diff --git a/.gitignore b/.gitignore index 753ec5e0b2..4cb7183850 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,9 @@ pids *.seed *.pid.lock +# AI tools +.claude/ + # Directory for instrumented libs generated by jscoverage/JSCover lib-cov @@ -82,4 +85,4 @@ build/ *.iml # VS Code files -.vscode \ No newline at end of file +.vscode diff --git a/README.md b/README.md index 1e36c396c4..6e9f1039c3 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,85 @@ Docs Sourcer is generally run in CI or via webhooks and doesn't have to be run l to run it locally you will need access to various secrets. These secrets live in 1password under a secure note called "docs sourcer .env file". +> **TODO — docs-sourcer / MDX 3 compatibility (Docusaurus 3 migration):** +> The `##DOCS-SOURCER-*` metadata blocks are wrapped in `{/* ... */}` so MDX 3 +> accepts them, with the literal `` HTML markers preserved inside +> for the docs-sourcer validator's `indexOf` check. This is a temporary bridge. +> +> **Do not run `yarn run-docs-sourcer` (or `yarn regenerate`) until docs-sourcer +> is updated** — its `writeMetadata` strips from `` wrappers can be removed +> from these files. + +### Sitemap `lastmod` requires a deep git clone on Vercel + +`docusaurus.config.js` enables `future.faster.gitEagerVcs: true` and +`sitemap.lastmod: "date"`, so each `` in `build/sitemap.xml` carries a +`` derived from `git log` at build time. + +Vercel clones with `--depth 1` by default, which leaves git unable to +determine when most files were last modified — every date would collapse to +the deploy commit. `scripts/vercelbuild.sh` therefore prepends +`git fetch --unshallow --filter=blob:none || true` before `yarn install`. The +`|| true` keeps already-deep clones from failing the build. + +If you later enable `showLastUpdateTime` / `showLastUpdateAuthor` in the docs +plugin, no further action is needed — they read from the same git source. + +### TypeScript `baseUrl` is deprecated and will hard-error in TS 7 + +`tsconfig.json` sets `ignoreDeprecations: "6.0"` to silence one warning: +`baseUrl` is deprecated in TS 5+ and removed in TS 7. We can't drop it +locally because: + +- `@docusaurus/tsconfig` (the base we extend) also sets `baseUrl: "."`, which + TypeScript resolves relative to the *extended* file's location + (`node_modules/@docusaurus/tsconfig/`), not ours. +- Removing only the local `baseUrl` makes the inherited one apply, which + resolves `@site/*` paths into the vendored Docusaurus directory and breaks + any swizzle that imports from `@site/...` (verified — two of our CodeBlock + swizzles fail to resolve). + +Two viable fixes when TS 7 lands: + +1. **Upstream fix:** drop `baseUrl` from `@docusaurus/tsconfig` and rely on + TS 5+ behavior where `paths` resolve relative to the tsconfig file. Then + drop our local `baseUrl` too. +2. **Stop extending `@docusaurus/tsconfig`:** inline its options minus + `baseUrl`. Trades dependency on an upstream fix for a small amount of + config duplication. + +The pre-existing `npx tsc` errors (35 as of this writing) are unrelated and +not enforced in CI; only `yarn build` and `yarn test` gate merges. + +### `onBrokenAnchors` is set to Docusaurus's default of `'warn'` + +The Docusaurus 3 migration tightened the broken-link checker to `'throw'` +(default), which catches dead `` targets and blocks builds. **Broken +anchors** (e.g. `[text](/page/#missing-section)`) are still only warned about +because ~22 pre-existing anchor breakages in `docs/reference/...` would +otherwise block every build until they're fixed. + +Risk: a future PR can introduce a typo'd anchor and CI won't catch it. + +To escalate, in two steps: + +1. Fix the 22 existing broken anchors (`yarn build` lists them under + `[WARNING] Docusaurus static site generation process emitted warnings for + N paths`). +2. Add `onBrokenAnchors: 'throw'` to `docusaurus.config.js`. + +The same applies — at lower priority — to the HTML-minifier nesting +diagnostics that surface as warnings during build (`End tag "p" implied`, +nested `` tags, etc.). Those are content bugs in pre-existing pages, not +a checker config problem. + ## Installing dependencies ```sh diff --git a/docs/2.0/docs/library/guides/integrate-tfc.md b/docs/2.0/docs/library/guides/integrate-tfc.md index 9664e6c4a6..23502277e4 100644 --- a/docs/2.0/docs/library/guides/integrate-tfc.md +++ b/docs/2.0/docs/library/guides/integrate-tfc.md @@ -212,14 +212,14 @@ Terraform requires an API token to communicate with Terraform Cloud (TFC) as a b Once TFC generates a token, add it to your local Terraform configuration file (`~/.terraformrc`) within a `credentials` block. Doing so will enable Terraform to authenticate with TFC when running remote operations. - +{/* spell-checker: disable */} ```hcl For TFE, substitute the custom hostname for your TFE host credentials "app.terraform.io" { token = "xxxxxxyyyyyyyyyzzzzzzzzzzzz" } ``` - +{/* spell-checker: enable */} ### Generating the backend @@ -348,7 +348,7 @@ Including all required inputs for the module in the generated `tfvars` file is e Once all configurations are in place, you can run `terragrunt init` to initialize the workspace (if it does not already exist) and then `terragrunt apply` to deploy the infrastructure. Terragrunt acts as a wrapper, invoking Terraform to perform the `plan` and `apply` stages on Terraform Cloud (TFC). During this process, the workflow will pause for confirmation between stages. However, if you run `terragrunt apply-all`, Terragrunt adds the `-auto-approve` flag, bypassing interactive approval and skipping the confirmation step. To begin, execute `terragrunt init`. This command generates the necessary backend configuration and `tfvars` file, establishing a connection to the remote backend. Below is an example output, with irrelevant details omitted for brevity. - +{/* spell-checker: disable */} ```bash $ terragrunt init [terragrunt] 2020/05/15 14:36:54 Reading Terragrunt config file at /infrastructure-live/dev/us-east-1/sqs/terragrunt.hcl @@ -428,7 +428,7 @@ queue_arn = arn:aws:sqs:us-east-1:0123456789012:example-name queue_name = example-name queue_url = https://sqs.us-east-1.amazonaws.com/0123456789012/example-name ``` - +{/* spell-checker: enable */} TFC runs a plan first, waits for confirmation, and then runs apply. The confirmation can be entered either on the command line or in the UI. Once complete, the results are visible in the TFC UI: ![Viewing the Terragrunt command results in the TFC UI](/img/guides/working-with-code/tfc/tfc-terragrunt-results.png) diff --git a/docs/2.0/docs/library/tutorials/deploying-your-first-gruntwork-module.md b/docs/2.0/docs/library/tutorials/deploying-your-first-gruntwork-module.md index 07b4fb08de..b9b937533a 100644 --- a/docs/2.0/docs/library/tutorials/deploying-your-first-gruntwork-module.md +++ b/docs/2.0/docs/library/tutorials/deploying-your-first-gruntwork-module.md @@ -323,7 +323,7 @@ def lambda_handler(event, context): ### Install dependencies Next, initialize the Go module and install Terratest as a dependency. - +{/* spell-checker: disable */} ```bash cd gw_module_guide/test go mod init github.com//gw_module_guide @@ -332,11 +332,11 @@ go get github.com/stretchr/testify/assert go get github.com/aws/aws-sdk-go/aws go mod tidy ``` - +{/* spell-checker: enable */} ### Write the test Next, write the test. Define a single test called `TestLambdaCreated` that provisions an AWS Lambda function, verifies its creation, and then destroys the Lambda function. We’ll use built-in functionality in `Terratest` to generate random values and set variables that will be passed into Terraform. - +{/* spell-checker: disable */} ```go title=gw_module_guide/test/lambda_test.go package test @@ -401,7 +401,7 @@ func TestLambdaCreated(t *testing.T) { assert.Equal(t, lambdaName, awsSDK.StringValue(function.Configuration.FunctionName)) } ``` - +{/* spell-checker: enable */} In this test, we first generate data to ensure that the test run creates resources with unique names. Next, we define the Terraform `options`, specifying the folder where the Terraform module resides and setting the values for the input variables. Then, we configure a `terraform destroy` operation, which will always run, regardless of the test status. We proceed by running `terraform init` and `terraform apply` to create the resources. Finally, we validate that the name of the AWS Lambda function created matches the expected name. diff --git a/docs/2.0/docs/overview/concepts/gruntworkplatform.md b/docs/2.0/docs/overview/concepts/gruntworkplatform.md index 6f4c031d13..0b9e1127c4 100644 --- a/docs/2.0/docs/overview/concepts/gruntworkplatform.md +++ b/docs/2.0/docs/overview/concepts/gruntworkplatform.md @@ -37,8 +37,8 @@ Gruntwork offers two main product packages: * [Infrastructure-Live](/2.0/docs/overview/concepts/infrastructure-live.md): An opinionated structure for IaC repositories that incorporates best practices for organizing OpenTofu code to maintain DRY principles at an enterprise scale. - - +{/* * [Catalog] -- see DEV-628 */} +{/* Placeholder for networking/transit gateway details */} All components are designed with a focus on Terragrunt, OpenTofu/Terraform, GitHub, and AWS. Support for additional technologies may be introduced in the future. diff --git a/docs/2.0/docs/patcher/guides/promotion-workflows.md b/docs/2.0/docs/patcher/guides/promotion-workflows.md index b3d8ba3e0f..e4aa6cf10d 100644 --- a/docs/2.0/docs/patcher/guides/promotion-workflows.md +++ b/docs/2.0/docs/patcher/guides/promotion-workflows.md @@ -82,7 +82,7 @@ This file, similar to an OpenTofu plan file, is intended to be a temporary artif We recommend that you delete and `.gitignore` any spec files in your codebase. ::: - +{/* spell-checker: disable */} ```yml name: Update Dev Dependencies on: @@ -168,7 +168,7 @@ jobs: pull_request_title: "[Patcher] [dev] Update ${{ matrix.dependency.ID }}" pull_request_branch: "${{ env.PR_BRANCH_PREFIX }}${{ matrix.dependency.ID }}" ``` - +{/* spell-checker: enable */} ### Setting up the stage step The `update-stage.yml` workflow file is nearly identical to `update-dev.yml`. diff --git a/docs/2.0/docs/patcher/tutorials/applying-first-patch.md b/docs/2.0/docs/patcher/tutorials/applying-first-patch.md index d4d6cae94c..c484dfcc27 100644 --- a/docs/2.0/docs/patcher/tutorials/applying-first-patch.md +++ b/docs/2.0/docs/patcher/tutorials/applying-first-patch.md @@ -72,9 +72,9 @@ Press `enter` to apply the update with Patcher: ![Patcher Update completion notice](/img/patcher/tutorials/patcher_update_complete.png) - +{/* spell-checker: disable */} You can now inspect the file system to verify the results of the patch. In this case, the update changed the version of `patcher-test` from `v0.10.3` to `v0.10.5` and added the required argument `sampleinput` to the unit. Commit and push these changes to your repository. - +{/* spell-checker: enable */} ![Patcher Update completion notice](/img/patcher/tutorials/patcher_update_results.png) diff --git a/docs/2.0/docs/patcher/tutorials/authoring-first-patch.md b/docs/2.0/docs/patcher/tutorials/authoring-first-patch.md index 9e77ea720a..ac6ac16d4b 100644 --- a/docs/2.0/docs/patcher/tutorials/authoring-first-patch.md +++ b/docs/2.0/docs/patcher/tutorials/authoring-first-patch.md @@ -25,7 +25,7 @@ For this tutorial, we will use the `patcher-test` module from the `gruntwork-io/ Suppose you need to add a new required variable to the `patcher-test` module. This change qualifies as a breaking change because consumers of your module must update their configurations to include the new variable. Without this update, OpenTofu will fail when planning or applying the infrastructure. - +{/* spell-checker: disable */} Add the new `sampleinput` variable to `variables.tf`: ```hcl title="$$DIRECTORY$$/variables.tf" @@ -35,7 +35,7 @@ variable "sampleinput" { default = "unset-value" } ``` - +{/* spell-checker: enable */} ## Running `patcher generate` to template the patch @@ -76,17 +76,17 @@ As the module maintainer, fill in the `` fields as needed: Because this breaking change is straightforward, we can use [`terrapatch`](https://github.com/gruntwork-io/terrapatch) to perform the required step: - +{/* spell-checker: disable */} ```bash $ terrapatch add-module-argument $PATCHER_MODULE_ADDRESS sampleinput "\"samplevalue\"" ``` - +{/* spell-checker: enable */} `$PATCHER_MODULE_ADDRESS` gets populated when Patcher is run; it doesn't need to be set independently anywhere. Once you have filled out the fields in the patch, it should look like this: - +{/* spell-checker: disable */} ```yaml name: "Sample Breaking Change" description: A sample breaking change that adds a new argument @@ -104,7 +104,7 @@ steps: - name: run: terrapatch add-module-argument $PATCHER_MODULE_ADDRESS sampleinput "\"samplevalue\"" ``` - +{/* spell-checker: enable */} ## Modifying `config.yaml` diff --git a/docs/2.0/docs/pipelines/guides/extending-pipelines.md b/docs/2.0/docs/pipelines/guides/extending-pipelines.md index 91c9a702cd..45ebc9a043 100644 --- a/docs/2.0/docs/pipelines/guides/extending-pipelines.md +++ b/docs/2.0/docs/pipelines/guides/extending-pipelines.md @@ -115,7 +115,7 @@ This step-by-step guide outlines best practices for implementing custom actions: - +{/* TODO: Add support for GitLab custom actions */} Contact Gruntwork support for assistance setting up custom actions for Gruntwork Pipelines on GitLab. @@ -183,7 +183,7 @@ For example: - +{/* TODO: Add support for GitLab custom actions */} diff --git a/docs/2.0/docs/pipelines/installation/addingexistinggitlabrepo.mdx b/docs/2.0/docs/pipelines/installation/addingexistinggitlabrepo.mdx index d0bb7df337..fa3c3f4649 100644 --- a/docs/2.0/docs/pipelines/installation/addingexistinggitlabrepo.mdx +++ b/docs/2.0/docs/pipelines/installation/addingexistinggitlabrepo.mdx @@ -24,7 +24,7 @@ This step only applies if you are using a self-hosted GitLab instance that is no 1. [Follow GitLab's instructions](https://docs.gitlab.com/ci/cloud_services/aws/#configure-a-non-public-gitlab-instance) for hosting your OIDC configuration and JWKS in a public location (e.g. S3 Bucket). This is necessary for both Gruntwork and the AWS OIDC provider to access the GitLab OIDC configuration and JWKS when authenticating JWT's generated by your custom instance. 2. Note the (stored as `ci_id_tokens_issuer_url` in your `gitlab.rb` file per GitLab's instructions) generated above for reuse in the next steps. -:::note Progress Checklist +:::note[Progress Checklist] @@ -52,7 +52,7 @@ Review your existing project structure and identify: 3. **Directory paths** in your project that contain Terragrunt units for each environment 4. **Existing OIDC resources** that may already be provisioned in your accounts -:::note Progress Checklist +:::note[Progress Checklist] @@ -97,7 +97,7 @@ For each AWS Account / Azure Subscription you want to manage, you might already -:::note Progress Checklist +:::note[Progress Checklist] @@ -110,7 +110,7 @@ Pipelines needs the ability to interact with GitLab to fetch resources (e.g. IaC To create machine users for GitLab access, follow our [machine users guide](/2.0/docs/pipelines/installation/viamachineusers) to set up the appropriate Personal Access Tokens (PATs) with the required permissions. -:::note Progress Checklist +:::note[Progress Checklist] @@ -145,7 +145,7 @@ git clone git@gitlab.com:acme/infrastructure-live.git cd infrastructure-live ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -176,7 +176,7 @@ mise ls-remote boilerplate ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -188,7 +188,7 @@ If you don't already have Terragrunt and OpenTofu installed locally, you can ins mise use -g terragrunt@latest opentofu@latest ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -207,7 +207,7 @@ The resources you need provisioned in AWS to start managing resources with Pipel For every account you want Pipelines to manage infrastructure in. -:::tip Don't Panic! +:::tip[Don't Panic!] This may seem like a lot to set up, but the content you need to add to your project is minimal. The majority of the work will be pulled from a reusable catalog that you'll reference in your project. @@ -338,7 +338,7 @@ boilerplate \ ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -379,7 +379,7 @@ Next, apply the changes to your account. terragrunt run --all --non-interactive --provider-cache apply ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -404,7 +404,7 @@ The resources you need provisioned in Azure to start managing resources with Pip 2. A Service Principal for the application to be used in role assignments 1. A role assignment for the service principal to access the Azure subscription -:::tip Don't Panic! +:::tip[Don't Panic!] This may seem like a lot to set up, but the content you need to add to your project is minimal. The majority of the work will be pulled from a reusable catalog that you'll reference in your project. @@ -489,7 +489,7 @@ boilerplate \ ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -506,7 +506,7 @@ If you haven't already, you'll want to authenticate to Azure using the `az` CLI. az login ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -525,7 +525,7 @@ export ARM_TENANT_ID="00000000-0000-0000-0000-000000000000" export ARM_SUBSCRIPTION_ID="11111111-1111-1111-1111-111111111111" ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -543,7 +543,7 @@ We're using the `--provider-cache` flag here to ensure that we don't re-download ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -561,7 +561,7 @@ We're adding the `--no-stack-generate` flag here, as Terragrunt will already hav ::: -:::note Progress Checklist +:::note[Progress Checklist] ::: @@ -613,7 +613,7 @@ EOF } ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -642,7 +642,7 @@ bootstrap = { You can use those values to set the values for `plan_client_id` and `apply_client_id` in the `.gruntwork/environment-.hcl` file. -:::note Progress Checklist +:::note[Progress Checklist] @@ -664,7 +664,7 @@ We're adding the `-force-copy` flag here to avoid any issues with OpenTofu waiti ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -681,7 +681,7 @@ The resources you need provisioned in GCP to start managing resources with Pipel For every GCP project that needs bootstrapping. -:::tip Don't Panic! +:::tip[Don't Panic!] This may seem like a lot to set up, but the content you need to add to your project is minimal. The majority of the work will be pulled from a reusable catalog that you'll reference in your project. @@ -767,7 +767,7 @@ boilerplate \ ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -806,7 +806,7 @@ We're using the `--backend-bootstrap` flag here to tell Terragrunt to bootstrap terragrunt run --all --non-interactive --provider-cache apply ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -830,7 +830,7 @@ repository { } ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -874,7 +874,7 @@ Check out the [aws block](/2.0/reference/pipelines/configurations-as-code/#aws-b ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -911,7 +911,7 @@ Learn more about how Pipelines authenticates to Azure in the [Authenticating to ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -953,7 +953,7 @@ Learn more about how Pipelines authenticates to GCP in the [Authenticating to GC ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -986,7 +986,7 @@ Learn more about how Pipelines can authenticate with custom authentication in th ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -1008,7 +1008,7 @@ include: - component: $CI_SERVER_FQDN/gruntwork-io/pipelines-workflows/pipelines@v2 ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -1030,7 +1030,7 @@ git commit -m "Add Pipelines configurations and GitLab CI workflow [skip ci]" git push ``` -:::note Progress Checklist +:::note[Progress Checklist] diff --git a/docs/2.0/docs/pipelines/installation/addingexistingrepo.mdx b/docs/2.0/docs/pipelines/installation/addingexistingrepo.mdx index 5b63b344db..42c6480482 100644 --- a/docs/2.0/docs/pipelines/installation/addingexistingrepo.mdx +++ b/docs/2.0/docs/pipelines/installation/addingexistingrepo.mdx @@ -37,7 +37,7 @@ Review your existing repository structure and identify: 3. **Directory paths** in your repository that contain Terragrunt units for each environment 4. **Existing OIDC resources** that may already be provisioned in your accounts -:::note Progress Checklist +:::note[Progress Checklist] @@ -82,7 +82,7 @@ For each AWS Account / Azure Subscription you want to manage, you might already -:::note Progress Checklist +:::note[Progress Checklist] @@ -98,7 +98,7 @@ There are two ways to configure SCM access for Pipelines: 1. Using the [Gruntwork.io GitHub App](/2.0/docs/pipelines/installation/viagithubapp#configuration) (recommended for most GitHub users). 2. Using a [machine user](/2.0/docs/pipelines/installation/viamachineusers) (recommended for GitHub users who cannot use the GitHub App). -:::note Progress Checklist +:::note[Progress Checklist] @@ -133,7 +133,7 @@ git clone git@github.com:acme/infrastructure-live.git cd infrastructure-live ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -164,7 +164,7 @@ mise ls-remote boilerplate ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -176,7 +176,7 @@ If you don't already have Terragrunt and OpenTofu installed locally, you can ins mise use -g terragrunt@latest opentofu@latest ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -195,7 +195,7 @@ The resources you need provisioned in AWS to start managing resources with Pipel For every account you want Pipelines to manage infrastructure in. -:::tip Don't Panic! +:::tip[Don't Panic!] This may seem like a lot to set up, but the content you need to add to your repository is minimal. The majority of the work will be pulled from a reusable catalog that you'll reference in your repository. @@ -307,7 +307,7 @@ boilerplate \ ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -348,7 +348,7 @@ Next, apply the changes to your account. terragrunt run --all --non-interactive --provider-cache apply ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -373,7 +373,7 @@ The resources you need provisioned in Azure to start managing resources with Pip 2. A Service Principal for the application to be used in role assignments 1. A role assignment for the service principal to access the Azure subscription -:::tip Don't Panic! +:::tip[Don't Panic!] This may seem like a lot to set up, but the content you need to add to your repository is minimal. The majority of the work will be pulled from a reusable catalog that you'll reference in your repository. @@ -456,7 +456,7 @@ boilerplate \ ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -473,7 +473,7 @@ If you haven't already, you'll want to authenticate to Azure using the `az` CLI. az login ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -492,7 +492,7 @@ export ARM_TENANT_ID="00000000-0000-0000-0000-000000000000" export ARM_SUBSCRIPTION_ID="11111111-1111-1111-1111-111111111111" ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -510,7 +510,7 @@ We're using the `--provider-cache` flag here to ensure that we don't re-download ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -528,7 +528,7 @@ We're adding the `--no-stack-generate` flag here, as Terragrunt will already hav ::: -:::note Progress Checklist +:::note[Progress Checklist] ::: @@ -580,7 +580,7 @@ EOF } ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -615,7 +615,7 @@ You can use those values to set the values for `plan_client_id` and `apply_clien ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -637,7 +637,7 @@ We're adding the `-force-copy` flag here to avoid any issues with OpenTofu waiti ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -654,7 +654,7 @@ The resources you need provisioned in GCP to start managing resources with Pipel For every GCP project that needs bootstrapping. -:::tip Don't Panic! +:::tip[Don't Panic!] This may seem like a lot to set up, but the content you need to add to your repository is minimal. The majority of the work will be pulled from a reusable catalog that you'll reference in your repository. @@ -723,7 +723,7 @@ boilerplate \ ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -766,7 +766,7 @@ Next, apply the changes to your project. terragrunt run --all --non-interactive --provider-cache apply ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -790,7 +790,7 @@ repository { } ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -834,7 +834,7 @@ Check out the [aws block](/2.0/reference/pipelines/configurations-as-code/#aws-b ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -871,7 +871,7 @@ Learn more about how Pipelines authenticates to Azure in the [Authenticating to ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -913,7 +913,7 @@ Learn more about how Pipelines authenticates to GCP in the [Authenticating to GC ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -946,7 +946,7 @@ Learn more about how Pipelines can authenticate with custom authentication in th ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -997,7 +997,7 @@ You can read the [Pipelines GitHub Actions Workflow](https://github.com/gruntwor ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -1020,7 +1020,7 @@ git commit -m "Add Pipelines configurations and GitHub Actions workflow [skip ci git push ``` -:::note Progress Checklist +:::note[Progress Checklist] diff --git a/docs/2.0/docs/pipelines/installation/addinggitlabrepo.mdx b/docs/2.0/docs/pipelines/installation/addinggitlabrepo.mdx index 6563f00e35..aabbf1ad89 100644 --- a/docs/2.0/docs/pipelines/installation/addinggitlabrepo.mdx +++ b/docs/2.0/docs/pipelines/installation/addinggitlabrepo.mdx @@ -21,7 +21,7 @@ This step only applies if you are using a self-hosted GitLab instance that is no 1. [Follow GitLab's instructions](https://docs.gitlab.com/ci/cloud_services/aws/#configure-a-non-public-gitlab-instance) for hosting your OIDC configuration and JWKS in a public location (e.g. S3 Bucket). This is necessary for both Gruntwork and the AWS OIDC provider to access the GitLab OIDC configuration and JWKS when authenticating JWT's generated by your custom instance. 2. Note the (stored as `ci_id_tokens_issuer_url` in your `gitlab.rb` file per GitLab's instructions) generated above for reuse in the next steps. -:::note Progress Checklist +:::note[Progress Checklist] @@ -37,7 +37,7 @@ Pipelines needs the ability to interact with Source Control Management (SCM) pla For GitLab, you'll need to configure SCM access using [machine users](/2.0/docs/pipelines/installation/viamachineusers) with appropriate Personal Access Tokens (PATs). -:::note Progress Checklist +:::note[Progress Checklist] @@ -68,7 +68,7 @@ git clone git@gitlab.com:acme/infrastructure-live.git cd infrastructure-live ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -99,7 +99,7 @@ mise ls-remote boilerplate ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -118,7 +118,7 @@ The resources that you need provisioned in AWS to start managing resources with For every account you want Pipelines to manage infrastructure in. -:::tip Don't Panic! +:::tip[Don't Panic!] This may seem like a lot to set up, but the content you need to add to your `infrastructure-live` repository is minimal. The majority of the work will be pulled from a reusable catalog that you'll reference in your `infrastructure-live` repository. @@ -204,7 +204,7 @@ boilerplate \ ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -216,7 +216,7 @@ Next, install Terragrunt and OpenTofu locally (the `.mise.toml` file in the root mise install ``` -:::note Progress Checklist +:::note[Progress Checklist] ::: @@ -247,7 +247,7 @@ We're using the `--provider-cache` flag here to ensure that we don't re-download We're using the `--backend-bootstrap` flag here to tell Terragrunt to bootstrap the OpenTofu backend automatically for the account. ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -259,7 +259,7 @@ Next, apply the changes to your account. terragrunt run --all --non-interactive --provider-cache apply ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -337,7 +337,7 @@ boilerplate \ ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -359,7 +359,7 @@ terragrunt run --all --non-interactive --provider-cache --backend-bootstrap plan terragrunt run --all --non-interactive --provider-cache apply ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -384,7 +384,7 @@ The resources that you need provisioned in Azure to start managing resources wit 2. A Service Principal for the application to be used in role assignments 1. A role assignment for the service principal to access the Azure subscription -:::tip Don't Panic! +:::tip[Don't Panic!] This may seem like a lot to set up, but the content you need to add to your `infrastructure-live` repository is minimal. The majority of the work will be pulled from a reusable catalog that you'll reference in your `infrastructure-live` repository. @@ -463,7 +463,7 @@ boilerplate \ ::: -:::note Progress Checklist +:::note[Progress Checklist] ::: @@ -473,7 +473,7 @@ Next, install Terragrunt and OpenTofu locally (the `.mise.toml` file in the root mise install ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -490,7 +490,7 @@ If you haven't already, you'll want to authenticate to Azure using the `az` CLI. az login ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -509,7 +509,7 @@ export ARM_TENANT_ID="00000000-0000-0000-0000-000000000000" export ARM_SUBSCRIPTION_ID="11111111-1111-1111-1111-111111111111" ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -527,7 +527,7 @@ We're using the `--provider-cache` flag here to ensure that we don't re-download ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -545,7 +545,7 @@ We're adding the `--no-stack-generate` flag here, as Terragrunt will already hav ::: -:::note Progress Checklist +:::note[Progress Checklist] ::: @@ -637,7 +637,7 @@ EOF } ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -684,7 +684,7 @@ bootstrap = { You can use those values to set the values for `plan_client_id` and `apply_client_id` in the `.gruntwork/environment-.hcl` file. -:::note Progress Checklist +:::note[Progress Checklist] @@ -706,7 +706,7 @@ We're adding the `-force-copy` flag here to avoid any issues with OpenTofu waiti ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -790,7 +790,7 @@ boilerplate \ --non-interactive ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -838,7 +838,7 @@ EOF } ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -860,7 +860,7 @@ We're adding the `--no-stack-generate` flag here, as Terragrunt will already hav ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -909,7 +909,7 @@ EOF } ``` -:::note Progress Checklist +:::note[Progress Checklist] @@ -927,7 +927,7 @@ We're adding the `-force-copy` flag here to avoid any issues with OpenTofu waiti ::: -:::note Progress Checklist +:::note[Progress Checklist] @@ -974,7 +974,7 @@ bootstrap = { You can use those values to set the values for `plan_client_id` and `apply_client_id` in the `.gruntwork/environment-.hcl` file. -:::note Progress Checklist +:::note[Progress Checklist] @@ -992,7 +992,7 @@ The resources that you need provisioned in GCP to start managing resources with For every GCP project you want Pipelines to manage infrastructure in. -:::tip Don't Panic! +:::tip[Don't Panic!] This may seem like a lot to set up, but the content you need to add to your `infrastructure-live` repository is minimal. The majority of the work will be pulled from a reusable catalog that you'll reference in your `infrastructure-live` repository. @@ -1079,7 +1079,7 @@ boilerplate \ ::: -:::note Progress Checklist +:::note[Progress Checklist] diff --git a/docs/2.0/docs/pipelines/installation/addingnewrepo.mdx b/docs/2.0/docs/pipelines/installation/addingnewrepo.mdx index 1424fcac97..e5d48fd11a 100644 --- a/docs/2.0/docs/pipelines/installation/addingnewrepo.mdx +++ b/docs/2.0/docs/pipelines/installation/addingnewrepo.mdx @@ -25,7 +25,7 @@ There are two ways to configure SCM access for Pipelines: 1. Using the [Gruntwork.io GitHub App](/2.0/docs/pipelines/installation/viagithubapp#configuration) (recommended for most GitHub users). 2. Using a [machine user](/2.0/docs/pipelines/installation/viamachineusers) (recommended for GitHub users who cannot use the GitHub App). -:::note Progress Checklist +:::note[Progress Checklist] @@ -115,7 +115,7 @@ The resources that you need provisioned in AWS to start managing resources with For every account you want Pipelines to manage infrastructure in. -:::tip Don't Panic! +:::tip[Don't Panic!] This may seem like a lot to set up, but the content you need to add to your `infrastructure-live` repository is minimal. The majority of the work will be pulled from a reusable catalog that you'll reference in your `infrastructure-live` repository. @@ -183,7 +183,7 @@ boilerplate \ ::: -:::note Progress Checklist +:::note[Progress Checklist] .hcl` file. -:::note Progress Checklist +:::note[Progress Checklist] .hcl` file. -:::note Progress Checklist +:::note[Progress Checklist] +*/} diff --git a/docs/2.0/docs/pipelines/previous-versions/upgrading-from-infrastructure-pipelines.md b/docs/2.0/docs/pipelines/previous-versions/upgrading-from-infrastructure-pipelines.md index 0d3942e065..b1e9174056 100644 --- a/docs/2.0/docs/pipelines/previous-versions/upgrading-from-infrastructure-pipelines.md +++ b/docs/2.0/docs/pipelines/previous-versions/upgrading-from-infrastructure-pipelines.md @@ -264,9 +264,11 @@ Create a new pull request that makes a small change to your infrastructure code If you encounter any issues or have suggestions for improving this guide, please contact Gruntwork support or contribute to the community guide. +{/* +*/} diff --git a/docs/2.0/docs/pipelines/previous-versions/upgrading-github-v3-to-v4.md b/docs/2.0/docs/pipelines/previous-versions/upgrading-github-v3-to-v4.md index 29b7c68ee1..48fab16588 100644 --- a/docs/2.0/docs/pipelines/previous-versions/upgrading-github-v3-to-v4.md +++ b/docs/2.0/docs/pipelines/previous-versions/upgrading-github-v3-to-v4.md @@ -56,7 +56,7 @@ terragrunt = "0.86.3" See the [Terragrunt Release Notes](https://github.com/gruntwork-io/terragrunt/releases) for detailed information on the changes to Terragrunt. -:::note Progress Checklist +:::note[Progress Checklist] - [ ] Terragrunt Version Updated @@ -94,7 +94,7 @@ include "root" { Refer to the [Terragrunt Documentation](https://terragrunt.gruntwork.io/docs/migrate/migrating-from-root-terragrunt-hcl/) for more details. -:::note Progress Checklist +:::note[Progress Checklist] - [ ] Root `terragrunt.hcl` file renamed to `root.hcl` - [ ] `find_in_parent_folders()` updated to `find_in_parent_folders("root.hcl")` @@ -127,7 +127,7 @@ repository { ``` -:::note Progress Checklist +:::note[Progress Checklist] - [ ] `.gruntwork/repository.hcl` created @@ -147,7 +147,7 @@ aws { } ``` -:::note Progress Checklist +:::note[Progress Checklist] - [ ] `.gruntwork/accounts.hcl` created @@ -188,7 +188,7 @@ Confirm the values by looking at your Infrastructure as Code (typically under `_ **Repeat this for each environment that needs to be authenticated.** -:::note Progress Checklist +:::note[Progress Checklist] - [ ] `.gruntwork/environment-ACCOUNTNAME.hcl` created for **each** AWS Account in your `accounts.yml` file @@ -215,7 +215,7 @@ a full reference of values or contact [Gruntwork Support](mailto:support@gruntwo For Enterprise customers using Account Factory: see the [Account Vending Configuration](/2.0/reference/accountfactory/configurations-as-code#account_vending-block) for converting the account vending configuration to HCL. -:::note Progress Checklist +:::note[Progress Checklist] - [ ] `.gruntwork/account-factory.hcl` created @@ -226,7 +226,7 @@ For Enterprise customers using Account Factory: see the [Account Vending Configu If your organization maintains an [allowlist of GitHub actions](https://docs.github.com/en/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#allowing-select-actions-and-reusable-workflows-to-run), update the allowlist with the full list of actions in [pipelines-actions v4.0.0](https://github.com/gruntwork-io/pipelines-actions/tree/v4.0.0/.github/actions) -:::note Progress Checklist +:::note[Progress Checklist] - [ ] (Only if your organization requires) Each pipelines action from `pipelines-actions/.github/actions` has been added to the organization's GitHub Actions allowlist @@ -240,7 +240,7 @@ In each infrastructure-live repository (including any `-access-control` or `-del Update the Pipelines Workflow in the repository to add `actions: read`; required by the latest Pull Request comment functionality. -:::note Progress Checklist +:::note[Progress Checklist] - [ ] Updated Pipelines Workflow `pipelines.yml` to add `actions: read` permission @@ -251,7 +251,7 @@ Update the Pipelines Workflow in the repository to add `actions: read`; required Update the `uses:` field of the GruntworkPipelines job to reference `@v4` -:::note Progress Checklist +:::note[Progress Checklist] - [ ] Updated Pipelines Workflow `pipelines.yml` to reference `@v4` @@ -263,7 +263,7 @@ The pipelines workflow now runs a `GruntworkPipelines / Pipelines Status Check` job which can be used for Required Status Checks. As a result the `PipelinesPassed` job is no longer required. Remove the PipelinesPassed job and update any Required Status Checks to use `GruntworkPipelines / Pipelines Status Check`. -:::note Progress Checklist +:::note[Progress Checklist] - [ ] Removed `PipelinesPassed` job from `pipelines.yml` @@ -284,7 +284,7 @@ The inputs to custom actions have been changed, the `gruntwork_context` input ha Any custom actions logic relying on `gruntwork_context` should be modified to no longer use this input. If this is not possible for your organization, contact us at [support@gruntwork.io](mailto:support@gruntwork.io). -:::note Progress Checklist +:::note[Progress Checklist] - [ ] Updated forked `pipelines-actions` to v4.1.0 or higher @@ -322,7 +322,7 @@ Update the GruntworkPipelines job to use the new inputs: Note that the syntax for the filter input in Drift Detection has changed. Refer to the [Filter Reference](/2.0/docs/pipelines/guides/running-drift-detection#drift-detection-filter) for a full description of the new and expanded capabilities. -:::note Progress Checklist +:::note[Progress Checklist] - [ ] Updated inputs and reference to inputs in `pipelines-drift-detection.yml` @@ -332,7 +332,7 @@ Note that the syntax for the filter input in Drift Detection has changed. Refer Update the `uses:` field of the GruntworkPipelines job to reference `@v4` -:::note Progress Checklist +:::note[Progress Checklist] - [ ] Updated `uses` reference in `pipelines-drift-detection.yml` @@ -377,7 +377,7 @@ Update the GruntworkPipelines job to use the updated inputs: unlock_all: ${{ inputs.unlock_all }} ``` -:::note Progress Checklist +:::note[Progress Checklist] - [ ] Updated inputs and reference to inputs in `pipelines-unlock.yml` @@ -387,7 +387,7 @@ Update the GruntworkPipelines job to use the updated inputs: Update the `uses:` field of the GruntworkPipelines job to reference `@v4` -:::note Progress Checklist +:::note[Progress Checklist] - [ ] Updated `uses` reference in `pipelines-unlock.yml` @@ -404,7 +404,7 @@ to include `Actions: Read & write access`. This allows Pipelines to create enric Customers using the [Gruntwork.io GitHub App](/2.0/docs/pipelines/installation/viagithubapp#gruntworkio-github-app) should also update the above permissions so that the tokens already have the necessary permissions when used as a fallback mechanism. -:::note Progress Checklist +:::note[Progress Checklist] - [ ] Updated CI User Token Permissions diff --git a/docs/2.0/docs/pipelines/previous-versions/upgrading-gitlab-v1-to-v2.md b/docs/2.0/docs/pipelines/previous-versions/upgrading-gitlab-v1-to-v2.md index a1ec93360e..c0603cd5fa 100644 --- a/docs/2.0/docs/pipelines/previous-versions/upgrading-gitlab-v1-to-v2.md +++ b/docs/2.0/docs/pipelines/previous-versions/upgrading-gitlab-v1-to-v2.md @@ -58,7 +58,7 @@ terragrunt = "0.86.3" See the [Terragrunt Release Notes](https://github.com/gruntwork-io/terragrunt/releases) for detailed information on the changes to Terragrunt. -:::note Progress Checklist +:::note[Progress Checklist] - [ ] Terragrunt Version Updated diff --git a/docs/2.0/docs/pipelines/tutorials/deploying-your-first-infrastructure-change.mdx b/docs/2.0/docs/pipelines/tutorials/deploying-your-first-infrastructure-change.mdx index 052012aa91..703afbbeb0 100644 --- a/docs/2.0/docs/pipelines/tutorials/deploying-your-first-infrastructure-change.mdx +++ b/docs/2.0/docs/pipelines/tutorials/deploying-your-first-infrastructure-change.mdx @@ -32,7 +32,7 @@ This section covers creating a cloud storage resource using Pipelines and GitOps -:::caution Permissions Required +:::caution[Permissions Required] By default, Pipelines is configured with the permissions needed to complete this tutorial. However, depending on your specific setup, you may need to adjust the IAM roles used by Pipelines to ensure they have the necessary permissions. @@ -79,7 +79,7 @@ The default `bootstrap` Terragrunt stack provided in the installation guide incl -:::caution Permissions Required +:::caution[Permissions Required] By default, Pipelines is configured with the permissions needed to complete this tutorial. However, depending on your specific setup, you may need to adjust the role used by Pipelines to ensure it has the appropriate permissions to create Resource Groups and Storage Accounts in your subscription. @@ -154,7 +154,7 @@ The default `bootstrap` Terragrunt stack provided in the installation guide incl -:::caution Permissions Required +:::caution[Permissions Required] By default, Pipelines is configured with the permissions needed to complete this tutorial. However, depending on your specific setup, you may need to adjust the IAM roles used by Pipelines to ensure they have the necessary permissions. diff --git a/docs/2.0/docs/pipelines/tutorials/destroying-infrastructure.mdx b/docs/2.0/docs/pipelines/tutorials/destroying-infrastructure.mdx index c0469b5cf2..87a5f43d18 100644 --- a/docs/2.0/docs/pipelines/tutorials/destroying-infrastructure.mdx +++ b/docs/2.0/docs/pipelines/tutorials/destroying-infrastructure.mdx @@ -30,7 +30,7 @@ This section explains how to destroy cloud resources using Pipelines and GitOps -:::caution Permissions Required +:::caution[Permissions Required] By default, Pipelines is configured with the permissions needed to complete this tutorial. However, depending on your specific setup, you may need to adjust the IAM roles used by Pipelines to ensure they have the necessary permissions to destroy resources. @@ -53,7 +53,7 @@ The default `bootstrap` Terragrunt stack provided in the installation guide incl -:::caution Permissions Required +:::caution[Permissions Required] By default, Pipelines is configured with the permissions needed to complete this tutorial. However, depending on your specific setup, you may need to adjust the role used by Pipelines to ensure it has the appropriate permissions to delete Resource Groups and Storage Accounts in your subscription. @@ -74,7 +74,7 @@ The default `bootstrap` Terragrunt stack provided in the installation guide incl -:::caution Permissions Required +:::caution[Permissions Required] By default, Pipelines is configured with the permissions needed to complete this tutorial. However, depending on your specific setup, you may need to adjust the IAM roles used by Pipelines to ensure they have the necessary permissions to destroy resources. diff --git a/docs/2.0/way/why/velocity.md b/docs/2.0/way/why/velocity.md index 380e7d675b..55f17b295b 100644 --- a/docs/2.0/way/why/velocity.md +++ b/docs/2.0/way/why/velocity.md @@ -83,7 +83,7 @@ In short, deployment frequency is a strong indicator of many best practices. For The clock starts ticking on lead time the moment you commit code to source control, but what about everything required to enable you to commit code in the first place? For example, security reviews, new cloud pattern development, or approval times could all be an issue. - +{/* **TODO:** Update this URL to link to the relevant content */} Because there's a wide range of possibilities here, we fall back to something more fundamental: customer satisfaction. When you [treat the developer platform as a product](/2.0/way/principles/core-philosophy/your-developer-platform-is-a-product), you need to know how happy your users are. You can ask qualitatively by just chatting with them, but to get the hard metrics, it's better to do user surveys. diff --git a/docs/courses.mdx b/docs/courses.mdx index 4feb78dde7..e1cc450117 100644 --- a/docs/courses.mdx +++ b/docs/courses.mdx @@ -60,9 +60,11 @@ Gruntwork has partnered with KodeKloud to deliver premier hands-on training for +{/* +*/} diff --git a/docs/discussions/knowledge-base/10.mdx b/docs/discussions/knowledge-base/10.mdx index dbf03f7508..ce2167df5d 100644 --- a/docs/discussions/knowledge-base/10.mdx +++ b/docs/discussions/knowledge-base/10.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/101.mdx b/docs/discussions/knowledge-base/101.mdx index b56ddfcd0b..d55f8aa2ec 100644 --- a/docs/discussions/knowledge-base/101.mdx +++ b/docs/discussions/knowledge-base/101.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/103.mdx b/docs/discussions/knowledge-base/103.mdx index 2d6f14a5ec..5180ffad4d 100644 --- a/docs/discussions/knowledge-base/103.mdx +++ b/docs/discussions/knowledge-base/103.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/104.mdx b/docs/discussions/knowledge-base/104.mdx index 90b2dc3122..d2558a2558 100644 --- a/docs/discussions/knowledge-base/104.mdx +++ b/docs/discussions/knowledge-base/104.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/105.mdx b/docs/discussions/knowledge-base/105.mdx index c7cdfe0bee..770032c985 100644 --- a/docs/discussions/knowledge-base/105.mdx +++ b/docs/discussions/knowledge-base/105.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/106.mdx b/docs/discussions/knowledge-base/106.mdx index 72d0c4340b..b8f2f4b060 100644 --- a/docs/discussions/knowledge-base/106.mdx +++ b/docs/discussions/knowledge-base/106.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/107.mdx b/docs/discussions/knowledge-base/107.mdx index 0a771eec69..0169c5375c 100644 --- a/docs/discussions/knowledge-base/107.mdx +++ b/docs/discussions/knowledge-base/107.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/108.mdx b/docs/discussions/knowledge-base/108.mdx index b45b660062..473e6a9fe4 100644 --- a/docs/discussions/knowledge-base/108.mdx +++ b/docs/discussions/knowledge-base/108.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/109.mdx b/docs/discussions/knowledge-base/109.mdx index 3554eec077..70533755b9 100644 --- a/docs/discussions/knowledge-base/109.mdx +++ b/docs/discussions/knowledge-base/109.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/11.mdx b/docs/discussions/knowledge-base/11.mdx index d4a3f61029..a967a17224 100644 --- a/docs/discussions/knowledge-base/11.mdx +++ b/docs/discussions/knowledge-base/11.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/110.mdx b/docs/discussions/knowledge-base/110.mdx index 6c13a14b9d..5e15c57fb1 100644 --- a/docs/discussions/knowledge-base/110.mdx +++ b/docs/discussions/knowledge-base/110.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/111.mdx b/docs/discussions/knowledge-base/111.mdx index 4537b4f724..6e2c4dd5f1 100644 --- a/docs/discussions/knowledge-base/111.mdx +++ b/docs/discussions/knowledge-base/111.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/112.mdx b/docs/discussions/knowledge-base/112.mdx index f693a4dfb1..7d81ea11e7 100644 --- a/docs/discussions/knowledge-base/112.mdx +++ b/docs/discussions/knowledge-base/112.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/117.mdx b/docs/discussions/knowledge-base/117.mdx index 3440e3e0fa..787ec4b76b 100644 --- a/docs/discussions/knowledge-base/117.mdx +++ b/docs/discussions/knowledge-base/117.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/119.mdx b/docs/discussions/knowledge-base/119.mdx index 58d0bcb868..c9db5f43d7 100644 --- a/docs/discussions/knowledge-base/119.mdx +++ b/docs/discussions/knowledge-base/119.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/12.mdx b/docs/discussions/knowledge-base/12.mdx index 400f7941d2..31edd0687f 100644 --- a/docs/discussions/knowledge-base/12.mdx +++ b/docs/discussions/knowledge-base/12.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/121.mdx b/docs/discussions/knowledge-base/121.mdx index c75fc64758..9caab53b0b 100644 --- a/docs/discussions/knowledge-base/121.mdx +++ b/docs/discussions/knowledge-base/121.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/124.mdx b/docs/discussions/knowledge-base/124.mdx index dfa335771b..3de3a91526 100644 --- a/docs/discussions/knowledge-base/124.mdx +++ b/docs/discussions/knowledge-base/124.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/125.mdx b/docs/discussions/knowledge-base/125.mdx index 745cfef8f2..8ec12dd536 100644 --- a/docs/discussions/knowledge-base/125.mdx +++ b/docs/discussions/knowledge-base/125.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/126.mdx b/docs/discussions/knowledge-base/126.mdx index 6e76dff350..aa00cefb0e 100644 --- a/docs/discussions/knowledge-base/126.mdx +++ b/docs/discussions/knowledge-base/126.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/127.mdx b/docs/discussions/knowledge-base/127.mdx index 91a1e4079c..1a0bb1e11f 100644 --- a/docs/discussions/knowledge-base/127.mdx +++ b/docs/discussions/knowledge-base/127.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/128.mdx b/docs/discussions/knowledge-base/128.mdx index a17c4e9478..3aa6e3984a 100644 --- a/docs/discussions/knowledge-base/128.mdx +++ b/docs/discussions/knowledge-base/128.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/129.mdx b/docs/discussions/knowledge-base/129.mdx index bb49d1c410..32ef0eb615 100644 --- a/docs/discussions/knowledge-base/129.mdx +++ b/docs/discussions/knowledge-base/129.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/13.mdx b/docs/discussions/knowledge-base/13.mdx index 4cb5bb6312..8855de99ab 100644 --- a/docs/discussions/knowledge-base/13.mdx +++ b/docs/discussions/knowledge-base/13.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/130.mdx b/docs/discussions/knowledge-base/130.mdx index 7e9ceae31a..826678862e 100644 --- a/docs/discussions/knowledge-base/130.mdx +++ b/docs/discussions/knowledge-base/130.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/131.mdx b/docs/discussions/knowledge-base/131.mdx index 79b8491d45..5a9949c5fa 100644 --- a/docs/discussions/knowledge-base/131.mdx +++ b/docs/discussions/knowledge-base/131.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/132.mdx b/docs/discussions/knowledge-base/132.mdx index 7bb18e3002..f2a36a2bc5 100644 --- a/docs/discussions/knowledge-base/132.mdx +++ b/docs/discussions/knowledge-base/132.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/133.mdx b/docs/discussions/knowledge-base/133.mdx index 6b6d72de43..3982c01d6a 100644 --- a/docs/discussions/knowledge-base/133.mdx +++ b/docs/discussions/knowledge-base/133.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/134.mdx b/docs/discussions/knowledge-base/134.mdx index 4d0360ed71..d002eb676e 100644 --- a/docs/discussions/knowledge-base/134.mdx +++ b/docs/discussions/knowledge-base/134.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/135.mdx b/docs/discussions/knowledge-base/135.mdx index 4c6944ca73..d542f8ee0f 100644 --- a/docs/discussions/knowledge-base/135.mdx +++ b/docs/discussions/knowledge-base/135.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/137.mdx b/docs/discussions/knowledge-base/137.mdx index a9916d9d9a..361706bd99 100644 --- a/docs/discussions/knowledge-base/137.mdx +++ b/docs/discussions/knowledge-base/137.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/138.mdx b/docs/discussions/knowledge-base/138.mdx index 650f4d9b9c..8481663468 100644 --- a/docs/discussions/knowledge-base/138.mdx +++ b/docs/discussions/knowledge-base/138.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/139.mdx b/docs/discussions/knowledge-base/139.mdx index ae8dc708a2..9efd312616 100644 --- a/docs/discussions/knowledge-base/139.mdx +++ b/docs/discussions/knowledge-base/139.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/14.mdx b/docs/discussions/knowledge-base/14.mdx index 8a59876a58..c8b7fd223d 100644 --- a/docs/discussions/knowledge-base/14.mdx +++ b/docs/discussions/knowledge-base/14.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/141.mdx b/docs/discussions/knowledge-base/141.mdx index e279767b88..18a692690f 100644 --- a/docs/discussions/knowledge-base/141.mdx +++ b/docs/discussions/knowledge-base/141.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/143.mdx b/docs/discussions/knowledge-base/143.mdx index 5edbb5d7c9..62cdb67132 100644 --- a/docs/discussions/knowledge-base/143.mdx +++ b/docs/discussions/knowledge-base/143.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/144.mdx b/docs/discussions/knowledge-base/144.mdx index 9e72863b35..03c266a028 100644 --- a/docs/discussions/knowledge-base/144.mdx +++ b/docs/discussions/knowledge-base/144.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/146.mdx b/docs/discussions/knowledge-base/146.mdx index b2c74f42b9..c75bbee5d7 100644 --- a/docs/discussions/knowledge-base/146.mdx +++ b/docs/discussions/knowledge-base/146.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/148.mdx b/docs/discussions/knowledge-base/148.mdx index 876a37e373..bd8c324f83 100644 --- a/docs/discussions/knowledge-base/148.mdx +++ b/docs/discussions/knowledge-base/148.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/149.mdx b/docs/discussions/knowledge-base/149.mdx index be0bbc8aa7..7539be5afd 100644 --- a/docs/discussions/knowledge-base/149.mdx +++ b/docs/discussions/knowledge-base/149.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/15.mdx b/docs/discussions/knowledge-base/15.mdx index 62d729e821..046861c298 100644 --- a/docs/discussions/knowledge-base/15.mdx +++ b/docs/discussions/knowledge-base/15.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/150.mdx b/docs/discussions/knowledge-base/150.mdx index c8f83cd581..f442a7fcf0 100644 --- a/docs/discussions/knowledge-base/150.mdx +++ b/docs/discussions/knowledge-base/150.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/151.mdx b/docs/discussions/knowledge-base/151.mdx index dee81140e1..b609fd5e50 100644 --- a/docs/discussions/knowledge-base/151.mdx +++ b/docs/discussions/knowledge-base/151.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/152.mdx b/docs/discussions/knowledge-base/152.mdx index e65808edc4..528d73d52a 100644 --- a/docs/discussions/knowledge-base/152.mdx +++ b/docs/discussions/knowledge-base/152.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/156.mdx b/docs/discussions/knowledge-base/156.mdx index cd3ba4aac0..ea57979df8 100644 --- a/docs/discussions/knowledge-base/156.mdx +++ b/docs/discussions/knowledge-base/156.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/16.mdx b/docs/discussions/knowledge-base/16.mdx index 06535b67c3..8e6ffcb908 100644 --- a/docs/discussions/knowledge-base/16.mdx +++ b/docs/discussions/knowledge-base/16.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/160.mdx b/docs/discussions/knowledge-base/160.mdx index 61bcaaab17..60e760356a 100644 --- a/docs/discussions/knowledge-base/160.mdx +++ b/docs/discussions/knowledge-base/160.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/162.mdx b/docs/discussions/knowledge-base/162.mdx index 28d307cff9..8080e85002 100644 --- a/docs/discussions/knowledge-base/162.mdx +++ b/docs/discussions/knowledge-base/162.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/163.mdx b/docs/discussions/knowledge-base/163.mdx index d8a72391fa..1a569e49ea 100644 --- a/docs/discussions/knowledge-base/163.mdx +++ b/docs/discussions/knowledge-base/163.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/164.mdx b/docs/discussions/knowledge-base/164.mdx index f23d03ce1f..cafa2ae440 100644 --- a/docs/discussions/knowledge-base/164.mdx +++ b/docs/discussions/knowledge-base/164.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/165.mdx b/docs/discussions/knowledge-base/165.mdx index 514d284dea..1c26ddf211 100644 --- a/docs/discussions/knowledge-base/165.mdx +++ b/docs/discussions/knowledge-base/165.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/166.mdx b/docs/discussions/knowledge-base/166.mdx index 046a16056f..6d94d24418 100644 --- a/docs/discussions/knowledge-base/166.mdx +++ b/docs/discussions/knowledge-base/166.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/167.mdx b/docs/discussions/knowledge-base/167.mdx index 8c0d88297c..0712f71112 100644 --- a/docs/discussions/knowledge-base/167.mdx +++ b/docs/discussions/knowledge-base/167.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/168.mdx b/docs/discussions/knowledge-base/168.mdx index bf06f07cc1..e7089e213b 100644 --- a/docs/discussions/knowledge-base/168.mdx +++ b/docs/discussions/knowledge-base/168.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/169.mdx b/docs/discussions/knowledge-base/169.mdx index b1befcf6f0..427d5efef4 100644 --- a/docs/discussions/knowledge-base/169.mdx +++ b/docs/discussions/knowledge-base/169.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/17.mdx b/docs/discussions/knowledge-base/17.mdx index 9a46e8fe7c..714c79410c 100644 --- a/docs/discussions/knowledge-base/17.mdx +++ b/docs/discussions/knowledge-base/17.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/170.mdx b/docs/discussions/knowledge-base/170.mdx index c5b5105d10..f136a6df6b 100644 --- a/docs/discussions/knowledge-base/170.mdx +++ b/docs/discussions/knowledge-base/170.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/171.mdx b/docs/discussions/knowledge-base/171.mdx index 4e6b8bf735..044c5a0e57 100644 --- a/docs/discussions/knowledge-base/171.mdx +++ b/docs/discussions/knowledge-base/171.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/172.mdx b/docs/discussions/knowledge-base/172.mdx index 6f15397112..eba3fa60e2 100644 --- a/docs/discussions/knowledge-base/172.mdx +++ b/docs/discussions/knowledge-base/172.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/173.mdx b/docs/discussions/knowledge-base/173.mdx index 5abf4bf87e..a2ca393a3a 100644 --- a/docs/discussions/knowledge-base/173.mdx +++ b/docs/discussions/knowledge-base/173.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/174.mdx b/docs/discussions/knowledge-base/174.mdx index faf752679a..5a8a0f7924 100644 --- a/docs/discussions/knowledge-base/174.mdx +++ b/docs/discussions/knowledge-base/174.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/175.mdx b/docs/discussions/knowledge-base/175.mdx index 0b9dc820ea..466550ce5f 100644 --- a/docs/discussions/knowledge-base/175.mdx +++ b/docs/discussions/knowledge-base/175.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/176.mdx b/docs/discussions/knowledge-base/176.mdx index 674b1499f2..d450ffb841 100644 --- a/docs/discussions/knowledge-base/176.mdx +++ b/docs/discussions/knowledge-base/176.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/178.mdx b/docs/discussions/knowledge-base/178.mdx index 02cb98d494..3f53d8f628 100644 --- a/docs/discussions/knowledge-base/178.mdx +++ b/docs/discussions/knowledge-base/178.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/18.mdx b/docs/discussions/knowledge-base/18.mdx index 47bdae0e31..652e0b4e25 100644 --- a/docs/discussions/knowledge-base/18.mdx +++ b/docs/discussions/knowledge-base/18.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/180.mdx b/docs/discussions/knowledge-base/180.mdx index 4ac520b187..afe9a5d78e 100644 --- a/docs/discussions/knowledge-base/180.mdx +++ b/docs/discussions/knowledge-base/180.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/181.mdx b/docs/discussions/knowledge-base/181.mdx index 7025684274..a18b6ce3eb 100644 --- a/docs/discussions/knowledge-base/181.mdx +++ b/docs/discussions/knowledge-base/181.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/182.mdx b/docs/discussions/knowledge-base/182.mdx index 80f209c96c..faae383bf8 100644 --- a/docs/discussions/knowledge-base/182.mdx +++ b/docs/discussions/knowledge-base/182.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/185.mdx b/docs/discussions/knowledge-base/185.mdx index e866dbbdfb..efc17b1921 100644 --- a/docs/discussions/knowledge-base/185.mdx +++ b/docs/discussions/knowledge-base/185.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/186.mdx b/docs/discussions/knowledge-base/186.mdx index 3ef9ec692b..0de710b0e8 100644 --- a/docs/discussions/knowledge-base/186.mdx +++ b/docs/discussions/knowledge-base/186.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/187.mdx b/docs/discussions/knowledge-base/187.mdx index 2b58ebad4e..8f9a4c899f 100644 --- a/docs/discussions/knowledge-base/187.mdx +++ b/docs/discussions/knowledge-base/187.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/189.mdx b/docs/discussions/knowledge-base/189.mdx index 2c06e98601..d515541838 100644 --- a/docs/discussions/knowledge-base/189.mdx +++ b/docs/discussions/knowledge-base/189.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/19.mdx b/docs/discussions/knowledge-base/19.mdx index 35db12187c..102a639937 100644 --- a/docs/discussions/knowledge-base/19.mdx +++ b/docs/discussions/knowledge-base/19.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/190.mdx b/docs/discussions/knowledge-base/190.mdx index e2a2facd73..55aa4e1bad 100644 --- a/docs/discussions/knowledge-base/190.mdx +++ b/docs/discussions/knowledge-base/190.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/192.mdx b/docs/discussions/knowledge-base/192.mdx index 4296ce7f74..47879b0373 100644 --- a/docs/discussions/knowledge-base/192.mdx +++ b/docs/discussions/knowledge-base/192.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/194.mdx b/docs/discussions/knowledge-base/194.mdx index 4af6d071d7..6061deb770 100644 --- a/docs/discussions/knowledge-base/194.mdx +++ b/docs/discussions/knowledge-base/194.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/195.mdx b/docs/discussions/knowledge-base/195.mdx index fcbb036991..381c631045 100644 --- a/docs/discussions/knowledge-base/195.mdx +++ b/docs/discussions/knowledge-base/195.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/196.mdx b/docs/discussions/knowledge-base/196.mdx index 04dce50b06..04153f40e0 100644 --- a/docs/discussions/knowledge-base/196.mdx +++ b/docs/discussions/knowledge-base/196.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/197.mdx b/docs/discussions/knowledge-base/197.mdx index 091e5dc1ff..6ec824d8bd 100644 --- a/docs/discussions/knowledge-base/197.mdx +++ b/docs/discussions/knowledge-base/197.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/20.mdx b/docs/discussions/knowledge-base/20.mdx index 76dced6efb..ba45976f26 100644 --- a/docs/discussions/knowledge-base/20.mdx +++ b/docs/discussions/knowledge-base/20.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/200.mdx b/docs/discussions/knowledge-base/200.mdx index bdf8a8664c..babd83f8a5 100644 --- a/docs/discussions/knowledge-base/200.mdx +++ b/docs/discussions/knowledge-base/200.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/201.mdx b/docs/discussions/knowledge-base/201.mdx index 40b265269d..7e39ae19a6 100644 --- a/docs/discussions/knowledge-base/201.mdx +++ b/docs/discussions/knowledge-base/201.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/202.mdx b/docs/discussions/knowledge-base/202.mdx index af5618cda5..9b2eaf169e 100644 --- a/docs/discussions/knowledge-base/202.mdx +++ b/docs/discussions/knowledge-base/202.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/203.mdx b/docs/discussions/knowledge-base/203.mdx index a5f392e531..3453ef9245 100644 --- a/docs/discussions/knowledge-base/203.mdx +++ b/docs/discussions/knowledge-base/203.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/205.mdx b/docs/discussions/knowledge-base/205.mdx index 4a6023895a..bab855ba54 100644 --- a/docs/discussions/knowledge-base/205.mdx +++ b/docs/discussions/knowledge-base/205.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/206.mdx b/docs/discussions/knowledge-base/206.mdx index a191969de3..188e6090e9 100644 --- a/docs/discussions/knowledge-base/206.mdx +++ b/docs/discussions/knowledge-base/206.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/207.mdx b/docs/discussions/knowledge-base/207.mdx index aad1c8fc60..70b3eff066 100644 --- a/docs/discussions/knowledge-base/207.mdx +++ b/docs/discussions/knowledge-base/207.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/208.mdx b/docs/discussions/knowledge-base/208.mdx index 138c332c05..ec1bfc32cf 100644 --- a/docs/discussions/knowledge-base/208.mdx +++ b/docs/discussions/knowledge-base/208.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/209.mdx b/docs/discussions/knowledge-base/209.mdx index 81bbca9db4..55b7237f07 100644 --- a/docs/discussions/knowledge-base/209.mdx +++ b/docs/discussions/knowledge-base/209.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/21.mdx b/docs/discussions/knowledge-base/21.mdx index 24e602b1b0..1ae6f0ce18 100644 --- a/docs/discussions/knowledge-base/21.mdx +++ b/docs/discussions/knowledge-base/21.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/211.mdx b/docs/discussions/knowledge-base/211.mdx index d424e9572e..292e1fea45 100644 --- a/docs/discussions/knowledge-base/211.mdx +++ b/docs/discussions/knowledge-base/211.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/212.mdx b/docs/discussions/knowledge-base/212.mdx index ad14ef06cf..114049c6ee 100644 --- a/docs/discussions/knowledge-base/212.mdx +++ b/docs/discussions/knowledge-base/212.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/213.mdx b/docs/discussions/knowledge-base/213.mdx index 83da161e42..d3a1dbca47 100644 --- a/docs/discussions/knowledge-base/213.mdx +++ b/docs/discussions/knowledge-base/213.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/215.mdx b/docs/discussions/knowledge-base/215.mdx index 251f80cd66..208c929f32 100644 --- a/docs/discussions/knowledge-base/215.mdx +++ b/docs/discussions/knowledge-base/215.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/216.mdx b/docs/discussions/knowledge-base/216.mdx index 23917659fc..bf97832546 100644 --- a/docs/discussions/knowledge-base/216.mdx +++ b/docs/discussions/knowledge-base/216.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/217.mdx b/docs/discussions/knowledge-base/217.mdx index a540f16df8..fb32a62977 100644 --- a/docs/discussions/knowledge-base/217.mdx +++ b/docs/discussions/knowledge-base/217.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/218.mdx b/docs/discussions/knowledge-base/218.mdx index bfa79b6ba4..513b0e139c 100644 --- a/docs/discussions/knowledge-base/218.mdx +++ b/docs/discussions/knowledge-base/218.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/219.mdx b/docs/discussions/knowledge-base/219.mdx index b8ca21fac6..daa3f4a861 100644 --- a/docs/discussions/knowledge-base/219.mdx +++ b/docs/discussions/knowledge-base/219.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/22.mdx b/docs/discussions/knowledge-base/22.mdx index 56b3e32315..a12b047c6c 100644 --- a/docs/discussions/knowledge-base/22.mdx +++ b/docs/discussions/knowledge-base/22.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/220.mdx b/docs/discussions/knowledge-base/220.mdx index 49a5e63f1b..2ac6a866f1 100644 --- a/docs/discussions/knowledge-base/220.mdx +++ b/docs/discussions/knowledge-base/220.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/221.mdx b/docs/discussions/knowledge-base/221.mdx index 48511f7bec..4e5d319152 100644 --- a/docs/discussions/knowledge-base/221.mdx +++ b/docs/discussions/knowledge-base/221.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/222.mdx b/docs/discussions/knowledge-base/222.mdx index 520eff4505..0a5791083c 100644 --- a/docs/discussions/knowledge-base/222.mdx +++ b/docs/discussions/knowledge-base/222.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/223.mdx b/docs/discussions/knowledge-base/223.mdx index ef9885d559..5f1d5b89d9 100644 --- a/docs/discussions/knowledge-base/223.mdx +++ b/docs/discussions/knowledge-base/223.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/224.mdx b/docs/discussions/knowledge-base/224.mdx index a91feb22dd..53f661213e 100644 --- a/docs/discussions/knowledge-base/224.mdx +++ b/docs/discussions/knowledge-base/224.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/225.mdx b/docs/discussions/knowledge-base/225.mdx index 22a2029780..b10b343093 100644 --- a/docs/discussions/knowledge-base/225.mdx +++ b/docs/discussions/knowledge-base/225.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/226.mdx b/docs/discussions/knowledge-base/226.mdx index 442665b648..ec380f472f 100644 --- a/docs/discussions/knowledge-base/226.mdx +++ b/docs/discussions/knowledge-base/226.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/227.mdx b/docs/discussions/knowledge-base/227.mdx index c543adee13..57a665ce4d 100644 --- a/docs/discussions/knowledge-base/227.mdx +++ b/docs/discussions/knowledge-base/227.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/228.mdx b/docs/discussions/knowledge-base/228.mdx index 0de23d6723..03c3e4f643 100644 --- a/docs/discussions/knowledge-base/228.mdx +++ b/docs/discussions/knowledge-base/228.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/229.mdx b/docs/discussions/knowledge-base/229.mdx index 1e829998d2..a122e2766c 100644 --- a/docs/discussions/knowledge-base/229.mdx +++ b/docs/discussions/knowledge-base/229.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/23.mdx b/docs/discussions/knowledge-base/23.mdx index e0f6452dcc..c6c4d35b49 100644 --- a/docs/discussions/knowledge-base/23.mdx +++ b/docs/discussions/knowledge-base/23.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/230.mdx b/docs/discussions/knowledge-base/230.mdx index d94d2ef257..a427a10187 100644 --- a/docs/discussions/knowledge-base/230.mdx +++ b/docs/discussions/knowledge-base/230.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/231.mdx b/docs/discussions/knowledge-base/231.mdx index c300202381..4cdf4dc73d 100644 --- a/docs/discussions/knowledge-base/231.mdx +++ b/docs/discussions/knowledge-base/231.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/232.mdx b/docs/discussions/knowledge-base/232.mdx index de31c5f8c6..e2810c1df0 100644 --- a/docs/discussions/knowledge-base/232.mdx +++ b/docs/discussions/knowledge-base/232.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/233.mdx b/docs/discussions/knowledge-base/233.mdx index 68f336630c..21f405246e 100644 --- a/docs/discussions/knowledge-base/233.mdx +++ b/docs/discussions/knowledge-base/233.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/234.mdx b/docs/discussions/knowledge-base/234.mdx index 24b57975a2..d109155f5d 100644 --- a/docs/discussions/knowledge-base/234.mdx +++ b/docs/discussions/knowledge-base/234.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/235.mdx b/docs/discussions/knowledge-base/235.mdx index 58a61c62c4..033f6453fb 100644 --- a/docs/discussions/knowledge-base/235.mdx +++ b/docs/discussions/knowledge-base/235.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/237.mdx b/docs/discussions/knowledge-base/237.mdx index 7b18ee5cdd..891e40e044 100644 --- a/docs/discussions/knowledge-base/237.mdx +++ b/docs/discussions/knowledge-base/237.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/238.mdx b/docs/discussions/knowledge-base/238.mdx index ab709d4073..2bd9a40ee5 100644 --- a/docs/discussions/knowledge-base/238.mdx +++ b/docs/discussions/knowledge-base/238.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/239.mdx b/docs/discussions/knowledge-base/239.mdx index 03a7312258..6d9fa9d0c9 100644 --- a/docs/discussions/knowledge-base/239.mdx +++ b/docs/discussions/knowledge-base/239.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/24.mdx b/docs/discussions/knowledge-base/24.mdx index 1f8bdded86..361e8a149b 100644 --- a/docs/discussions/knowledge-base/24.mdx +++ b/docs/discussions/knowledge-base/24.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/240.mdx b/docs/discussions/knowledge-base/240.mdx index 1479dddb26..e1ec3eb359 100644 --- a/docs/discussions/knowledge-base/240.mdx +++ b/docs/discussions/knowledge-base/240.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/242.mdx b/docs/discussions/knowledge-base/242.mdx index 8483026f76..62e4d8ed45 100644 --- a/docs/discussions/knowledge-base/242.mdx +++ b/docs/discussions/knowledge-base/242.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/243.mdx b/docs/discussions/knowledge-base/243.mdx index ca1df1c0d7..5d0a77432c 100644 --- a/docs/discussions/knowledge-base/243.mdx +++ b/docs/discussions/knowledge-base/243.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/244.mdx b/docs/discussions/knowledge-base/244.mdx index 08890cf66e..c1b7b3b044 100644 --- a/docs/discussions/knowledge-base/244.mdx +++ b/docs/discussions/knowledge-base/244.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/25.mdx b/docs/discussions/knowledge-base/25.mdx index 4a573444bc..e8eddb5dba 100644 --- a/docs/discussions/knowledge-base/25.mdx +++ b/docs/discussions/knowledge-base/25.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/250.mdx b/docs/discussions/knowledge-base/250.mdx index c27def2c06..5ab142ec9f 100644 --- a/docs/discussions/knowledge-base/250.mdx +++ b/docs/discussions/knowledge-base/250.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/253.mdx b/docs/discussions/knowledge-base/253.mdx index dcf9f28cca..50b89e0f0b 100644 --- a/docs/discussions/knowledge-base/253.mdx +++ b/docs/discussions/knowledge-base/253.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/255.mdx b/docs/discussions/knowledge-base/255.mdx index 468929b0a8..c59ecb0738 100644 --- a/docs/discussions/knowledge-base/255.mdx +++ b/docs/discussions/knowledge-base/255.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/256.mdx b/docs/discussions/knowledge-base/256.mdx index 8128abf738..beb09fac3a 100644 --- a/docs/discussions/knowledge-base/256.mdx +++ b/docs/discussions/knowledge-base/256.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/257.mdx b/docs/discussions/knowledge-base/257.mdx index ac1f0bf0e4..a47d2d244d 100644 --- a/docs/discussions/knowledge-base/257.mdx +++ b/docs/discussions/knowledge-base/257.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/258.mdx b/docs/discussions/knowledge-base/258.mdx index a9d83cd016..b61db0c90f 100644 --- a/docs/discussions/knowledge-base/258.mdx +++ b/docs/discussions/knowledge-base/258.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/259.mdx b/docs/discussions/knowledge-base/259.mdx index 899aa3f92c..c3bdfe3fcd 100644 --- a/docs/discussions/knowledge-base/259.mdx +++ b/docs/discussions/knowledge-base/259.mdx @@ -14,13 +14,15 @@ import GitHub from "/src/components/GitHub" Knowledge Base

Updating Docker containers for CNI and Proxy

-\r\nAccording to AWS support I have to use the ECR `123456789012.dkr.ecr.eu-south-1.amazonaws.com` for cni and proxy.\r\n\r\n1 ) How can i update the module? \r\n2) Should i except any other issues on Milan region ? \r\n\r\nI am using managed node groups in terraform-aws-eks v0.46.8","bodyHTML":"\n

According to AWS support I have to use the ECR 123456789012.dkr.ecr.eu-south-1.amazonaws.com for cni and proxy.

\n

1 ) How can i update the module?
\n2) Should i except any other issues on Milan region ?

\n

I am using managed node groups in terraform-aws-eks v0.46.8

","answer":{"body":"This is automatically handled by `kubergrunt` in the `sync-core-components` subcommand which the terraform module will call under the hood since version [0.7.7](https://github.com/gruntwork-io/kubergrunt/releases/tag/v0.7.7). So this should resolve itself if you upgrade the version of `kubergrunt`, assuming you have not disabled `kubergrunt` management of the core components (the input variable `use_upgrade_cluster_script`).","bodyHTML":"

This is automatically handled by kubergrunt in the sync-core-components subcommand which the terraform module will call under the hood since version 0.7.7. So this should resolve itself if you upgrade the version of kubergrunt, assuming you have not disabled kubergrunt management of the core components (the input variable use_upgrade_cluster_script).

"}}} /> +According to AWS support I have to use the ECR 123456789012.dkr.ecr.eu-south-1.amazonaws.com for cni and proxy.

\n

1 ) How can i update the module?
\n2) Should i except any other issues on Milan region ?

\n

I am using managed node groups in terraform-aws-eks v0.46.8

","answer":{"body":"This is automatically handled by `kubergrunt` in the `sync-core-components` subcommand which the terraform module will call under the hood since version [0.7.7](https://github.com/gruntwork-io/kubergrunt/releases/tag/v0.7.7). So this should resolve itself if you upgrade the version of `kubergrunt`, assuming you have not disabled `kubergrunt` management of the core components (the input variable `use_upgrade_cluster_script`).","bodyHTML":"

This is automatically handled by kubergrunt in the sync-core-components subcommand which the terraform module will call under the hood since version 0.7.7. So this should resolve itself if you upgrade the version of kubergrunt, assuming you have not disabled kubergrunt management of the core components (the input variable use_upgrade_cluster_script).

"}}} /> +{/* +*/} diff --git a/docs/discussions/knowledge-base/26.mdx b/docs/discussions/knowledge-base/26.mdx index 3e64147560..3e65687c6f 100644 --- a/docs/discussions/knowledge-base/26.mdx +++ b/docs/discussions/knowledge-base/26.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/260.mdx b/docs/discussions/knowledge-base/260.mdx index 4c7c0e4736..80d80b7230 100644 --- a/docs/discussions/knowledge-base/260.mdx +++ b/docs/discussions/knowledge-base/260.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/261.mdx b/docs/discussions/knowledge-base/261.mdx index ffd2a34421..7709d579ab 100644 --- a/docs/discussions/knowledge-base/261.mdx +++ b/docs/discussions/knowledge-base/261.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/263.mdx b/docs/discussions/knowledge-base/263.mdx index e36d464c87..d09bd96f57 100644 --- a/docs/discussions/knowledge-base/263.mdx +++ b/docs/discussions/knowledge-base/263.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/264.mdx b/docs/discussions/knowledge-base/264.mdx index 52553555fc..71696dac89 100644 --- a/docs/discussions/knowledge-base/264.mdx +++ b/docs/discussions/knowledge-base/264.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/265.mdx b/docs/discussions/knowledge-base/265.mdx index 5f99ccef17..69d049db37 100644 --- a/docs/discussions/knowledge-base/265.mdx +++ b/docs/discussions/knowledge-base/265.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/27.mdx b/docs/discussions/knowledge-base/27.mdx index 1ba71bb670..3f192641bc 100644 --- a/docs/discussions/knowledge-base/27.mdx +++ b/docs/discussions/knowledge-base/27.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/28.mdx b/docs/discussions/knowledge-base/28.mdx index 7da8147e2c..3da9544dea 100644 --- a/docs/discussions/knowledge-base/28.mdx +++ b/docs/discussions/knowledge-base/28.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/282.mdx b/docs/discussions/knowledge-base/282.mdx index e3fb2452cc..67017e390b 100644 --- a/docs/discussions/knowledge-base/282.mdx +++ b/docs/discussions/knowledge-base/282.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/283.mdx b/docs/discussions/knowledge-base/283.mdx index 2ce53e997c..8ecd35407e 100644 --- a/docs/discussions/knowledge-base/283.mdx +++ b/docs/discussions/knowledge-base/283.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/284.mdx b/docs/discussions/knowledge-base/284.mdx index d030f04e75..afb5019624 100644 --- a/docs/discussions/knowledge-base/284.mdx +++ b/docs/discussions/knowledge-base/284.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/286.mdx b/docs/discussions/knowledge-base/286.mdx index 8aec3bcf2c..ddd85e2e75 100644 --- a/docs/discussions/knowledge-base/286.mdx +++ b/docs/discussions/knowledge-base/286.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/287.mdx b/docs/discussions/knowledge-base/287.mdx index 14d64e3d6a..7adce8f3a2 100644 --- a/docs/discussions/knowledge-base/287.mdx +++ b/docs/discussions/knowledge-base/287.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/289.mdx b/docs/discussions/knowledge-base/289.mdx index c30a25418d..6d7eec92e0 100644 --- a/docs/discussions/knowledge-base/289.mdx +++ b/docs/discussions/knowledge-base/289.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/29.mdx b/docs/discussions/knowledge-base/29.mdx index 59b90ea6bd..cc9b3215f7 100644 --- a/docs/discussions/knowledge-base/29.mdx +++ b/docs/discussions/knowledge-base/29.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/298.mdx b/docs/discussions/knowledge-base/298.mdx index f0f24080e8..8d24de1491 100644 --- a/docs/discussions/knowledge-base/298.mdx +++ b/docs/discussions/knowledge-base/298.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/299.mdx b/docs/discussions/knowledge-base/299.mdx index 6954927f6c..5621f49fec 100644 --- a/docs/discussions/knowledge-base/299.mdx +++ b/docs/discussions/knowledge-base/299.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/3.mdx b/docs/discussions/knowledge-base/3.mdx index f85b3dbff3..00b6f8320f 100644 --- a/docs/discussions/knowledge-base/3.mdx +++ b/docs/discussions/knowledge-base/3.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/302.mdx b/docs/discussions/knowledge-base/302.mdx index 7158b517d8..f267338bbe 100644 --- a/docs/discussions/knowledge-base/302.mdx +++ b/docs/discussions/knowledge-base/302.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/303.mdx b/docs/discussions/knowledge-base/303.mdx index a6278a5263..bab1d3a942 100644 --- a/docs/discussions/knowledge-base/303.mdx +++ b/docs/discussions/knowledge-base/303.mdx @@ -14,13 +14,15 @@ import GitHub from "/src/components/GitHub" Knowledge Base

Upgrading Kubernetes and Terraform

-\r\nWe are plotting our course through kubernetes upgrades from `v1.18` to `v1.21` to catch ourselves up before AWS EKS support ends and are currently using `v0.30.0` of the terraform-aws-eks module. What do you recommend for our approach?\r\n\r\n1. Should we stay lock-step in line with the module's default kubernetes version and handle the TF upgrades along the way to `0.14`, `0.15`, `1.0.x`..\r\n2. E.g.\r\n3. k8s `v1.19` TF >= `0.12.0` module `v0.33.0`\r\n4. k8s `v1.20` TF >= `0.15.0` module `v0.40.0`\r\n5. k8s `v1.21` TF >= `1.0.0` module `v0.44.0`\r\n6. Or is there some support for a more flexible approach where we override the module's default kubernetes version to `v1.21` while remaining on the older module version and handle the module + TF upgrades separately afterwards?\r\n","bodyHTML":"\n

We are plotting our course through kubernetes upgrades from v1.18 to v1.21 to catch ourselves up before AWS EKS support ends and are currently using v0.30.0 of the terraform-aws-eks module. What do you recommend for our approach?

\n
    \n
  1. Should we stay lock-step in line with the module's default kubernetes version and handle the TF upgrades along the way to 0.14, 0.15, 1.0.x..
  2. \n
  3. E.g.
  4. \n
  5. k8s v1.19 TF >= 0.12.0 module v0.33.0
  6. \n
  7. k8s v1.20 TF >= 0.15.0 module v0.40.0
  8. \n
  9. k8s v1.21 TF >= 1.0.0 module v0.44.0
  10. \n
  11. Or is there some support for a more flexible approach where we override the module's default kubernetes version to v1.21 while remaining on the older module version and handle the module + TF upgrades separately afterwards?
  12. \n
","answer":{"body":"`terraform-aws-eks` version `v0.30.0` is known to work with Terraform `1.0.x` and Kubernetes `v1.21` (provided you have `kubergrunt` version `v0.8.0` installed and available on the machine deploying). Given that, we recommend updating each in isolation, starting with `terraform` version and then moving on to upgrading the kubernetes version, before ending with upgrading the module versions.\r\n\r\nSince you are already on `terraform-aws-eks` version `v0.30.0`, upgrading the Terraform version should be fairly straight forward. Note that you will need to upgrade the `terraform` version one minor version at a time. That is, you will need to update your local CLI to terraform `0.13.x`, run `terraform apply`, and only after `apply` is successful do you update the CLI to version `0.14.x` and so on.\r\n\r\nFor upgrading Kubernetes versions, you can refer to our docs, [How do I upgrade the Kubernetes Version of the cluster?](https://github.com/gruntwork-io/terraform-aws-eks/tree/v0.30.0/modules/eks-cluster-control-plane#how-do-i-upgrade-the-kubernetes-version-of-the-cluster).\r\n\r\nFinally, when upgrading the module versions, refer to our docs, [Updating to new versions](https://docs.gruntwork.io/guides/working-with-code/versioning/#updating-to-new-versions).","bodyHTML":"

terraform-aws-eks version v0.30.0 is known to work with Terraform 1.0.x and Kubernetes v1.21 (provided you have kubergrunt version v0.8.0 installed and available on the machine deploying). Given that, we recommend updating each in isolation, starting with terraform version and then moving on to upgrading the kubernetes version, before ending with upgrading the module versions.

\n

Since you are already on terraform-aws-eks version v0.30.0, upgrading the Terraform version should be fairly straight forward. Note that you will need to upgrade the terraform version one minor version at a time. That is, you will need to update your local CLI to terraform 0.13.x, run terraform apply, and only after apply is successful do you update the CLI to version 0.14.x and so on.

\n

For upgrading Kubernetes versions, you can refer to our docs, How do I upgrade the Kubernetes Version of the cluster?.

\n

Finally, when upgrading the module versions, refer to our docs, Updating to new versions.

"}}} /> += `0.12.0` module `v0.33.0`\r\n4. k8s `v1.20` TF >= `0.15.0` module `v0.40.0`\r\n5. k8s `v1.21` TF >= `1.0.0` module `v0.44.0`\r\n6. Or is there some support for a more flexible approach where we override the module's default kubernetes version to `v1.21` while remaining on the older module version and handle the module + TF upgrades separately afterwards?\r\n","bodyHTML":"\n

We are plotting our course through kubernetes upgrades from v1.18 to v1.21 to catch ourselves up before AWS EKS support ends and are currently using v0.30.0 of the terraform-aws-eks module. What do you recommend for our approach?

\n
    \n
  1. Should we stay lock-step in line with the module's default kubernetes version and handle the TF upgrades along the way to 0.14, 0.15, 1.0.x..
  2. \n
  3. E.g.
  4. \n
  5. k8s v1.19 TF >= 0.12.0 module v0.33.0
  6. \n
  7. k8s v1.20 TF >= 0.15.0 module v0.40.0
  8. \n
  9. k8s v1.21 TF >= 1.0.0 module v0.44.0
  10. \n
  11. Or is there some support for a more flexible approach where we override the module's default kubernetes version to v1.21 while remaining on the older module version and handle the module + TF upgrades separately afterwards?
  12. \n
","answer":{"body":"`terraform-aws-eks` version `v0.30.0` is known to work with Terraform `1.0.x` and Kubernetes `v1.21` (provided you have `kubergrunt` version `v0.8.0` installed and available on the machine deploying). Given that, we recommend updating each in isolation, starting with `terraform` version and then moving on to upgrading the kubernetes version, before ending with upgrading the module versions.\r\n\r\nSince you are already on `terraform-aws-eks` version `v0.30.0`, upgrading the Terraform version should be fairly straight forward. Note that you will need to upgrade the `terraform` version one minor version at a time. That is, you will need to update your local CLI to terraform `0.13.x`, run `terraform apply`, and only after `apply` is successful do you update the CLI to version `0.14.x` and so on.\r\n\r\nFor upgrading Kubernetes versions, you can refer to our docs, [How do I upgrade the Kubernetes Version of the cluster?](https://github.com/gruntwork-io/terraform-aws-eks/tree/v0.30.0/modules/eks-cluster-control-plane#how-do-i-upgrade-the-kubernetes-version-of-the-cluster).\r\n\r\nFinally, when upgrading the module versions, refer to our docs, [Updating to new versions](https://docs.gruntwork.io/guides/working-with-code/versioning/#updating-to-new-versions).","bodyHTML":"

terraform-aws-eks version v0.30.0 is known to work with Terraform 1.0.x and Kubernetes v1.21 (provided you have kubergrunt version v0.8.0 installed and available on the machine deploying). Given that, we recommend updating each in isolation, starting with terraform version and then moving on to upgrading the kubernetes version, before ending with upgrading the module versions.

\n

Since you are already on terraform-aws-eks version v0.30.0, upgrading the Terraform version should be fairly straight forward. Note that you will need to upgrade the terraform version one minor version at a time. That is, you will need to update your local CLI to terraform 0.13.x, run terraform apply, and only after apply is successful do you update the CLI to version 0.14.x and so on.

\n

For upgrading Kubernetes versions, you can refer to our docs, How do I upgrade the Kubernetes Version of the cluster?.

\n

Finally, when upgrading the module versions, refer to our docs, Updating to new versions.

"}}} />
+{/* +*/} diff --git a/docs/discussions/knowledge-base/304.mdx b/docs/discussions/knowledge-base/304.mdx index 7e7a1a40e7..e57dcfa056 100644 --- a/docs/discussions/knowledge-base/304.mdx +++ b/docs/discussions/knowledge-base/304.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/305.mdx b/docs/discussions/knowledge-base/305.mdx index cdd59e6766..4a0b717ca9 100644 --- a/docs/discussions/knowledge-base/305.mdx +++ b/docs/discussions/knowledge-base/305.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/306.mdx b/docs/discussions/knowledge-base/306.mdx index ad0f1f2ab6..bf0f444a50 100644 --- a/docs/discussions/knowledge-base/306.mdx +++ b/docs/discussions/knowledge-base/306.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/307.mdx b/docs/discussions/knowledge-base/307.mdx index 00ce695df8..e6a4905a54 100644 --- a/docs/discussions/knowledge-base/307.mdx +++ b/docs/discussions/knowledge-base/307.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/31.mdx b/docs/discussions/knowledge-base/31.mdx index c26ada8ed6..d1bd91ae1b 100644 --- a/docs/discussions/knowledge-base/31.mdx +++ b/docs/discussions/knowledge-base/31.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/312.mdx b/docs/discussions/knowledge-base/312.mdx index 0b17a4f9d4..c4a26221e0 100644 --- a/docs/discussions/knowledge-base/312.mdx +++ b/docs/discussions/knowledge-base/312.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/313.mdx b/docs/discussions/knowledge-base/313.mdx index 701c8b2d65..07a0b13fe3 100644 --- a/docs/discussions/knowledge-base/313.mdx +++ b/docs/discussions/knowledge-base/313.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/314.mdx b/docs/discussions/knowledge-base/314.mdx index 8e2c5d0def..a858d650b5 100644 --- a/docs/discussions/knowledge-base/314.mdx +++ b/docs/discussions/knowledge-base/314.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/315.mdx b/docs/discussions/knowledge-base/315.mdx index fa7e17ad88..9b570b0ac8 100644 --- a/docs/discussions/knowledge-base/315.mdx +++ b/docs/discussions/knowledge-base/315.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/316.mdx b/docs/discussions/knowledge-base/316.mdx index 16788896b6..4304e1c802 100644 --- a/docs/discussions/knowledge-base/316.mdx +++ b/docs/discussions/knowledge-base/316.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/318.mdx b/docs/discussions/knowledge-base/318.mdx index 76caf41980..fd8212de12 100644 --- a/docs/discussions/knowledge-base/318.mdx +++ b/docs/discussions/knowledge-base/318.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/319.mdx b/docs/discussions/knowledge-base/319.mdx index 3e86776270..9ffafec6e2 100644 --- a/docs/discussions/knowledge-base/319.mdx +++ b/docs/discussions/knowledge-base/319.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/320.mdx b/docs/discussions/knowledge-base/320.mdx index 973b3effe5..9ecab5f61f 100644 --- a/docs/discussions/knowledge-base/320.mdx +++ b/docs/discussions/knowledge-base/320.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/321.mdx b/docs/discussions/knowledge-base/321.mdx index 18bc6d7cd6..ec4e6cb342 100644 --- a/docs/discussions/knowledge-base/321.mdx +++ b/docs/discussions/knowledge-base/321.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/322.mdx b/docs/discussions/knowledge-base/322.mdx index e9e70c342a..a89812593d 100644 --- a/docs/discussions/knowledge-base/322.mdx +++ b/docs/discussions/knowledge-base/322.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/323.mdx b/docs/discussions/knowledge-base/323.mdx index 854cdb723d..1d32e9d49b 100644 --- a/docs/discussions/knowledge-base/323.mdx +++ b/docs/discussions/knowledge-base/323.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/325.mdx b/docs/discussions/knowledge-base/325.mdx index 86a8416084..aae6695594 100644 --- a/docs/discussions/knowledge-base/325.mdx +++ b/docs/discussions/knowledge-base/325.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/326.mdx b/docs/discussions/knowledge-base/326.mdx index 0e5b81e632..3b47ca8aa0 100644 --- a/docs/discussions/knowledge-base/326.mdx +++ b/docs/discussions/knowledge-base/326.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/328.mdx b/docs/discussions/knowledge-base/328.mdx index 6547e7cfa7..d1c8b8b97c 100644 --- a/docs/discussions/knowledge-base/328.mdx +++ b/docs/discussions/knowledge-base/328.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/329.mdx b/docs/discussions/knowledge-base/329.mdx index 2fca77fb5a..37d693e426 100644 --- a/docs/discussions/knowledge-base/329.mdx +++ b/docs/discussions/knowledge-base/329.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/330.mdx b/docs/discussions/knowledge-base/330.mdx index 26973218c1..de08e48ae7 100644 --- a/docs/discussions/knowledge-base/330.mdx +++ b/docs/discussions/knowledge-base/330.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/331.mdx b/docs/discussions/knowledge-base/331.mdx index 6ee16778ef..707358218b 100644 --- a/docs/discussions/knowledge-base/331.mdx +++ b/docs/discussions/knowledge-base/331.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/332.mdx b/docs/discussions/knowledge-base/332.mdx index 48c42fdae4..610b5d95d7 100644 --- a/docs/discussions/knowledge-base/332.mdx +++ b/docs/discussions/knowledge-base/332.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/333.mdx b/docs/discussions/knowledge-base/333.mdx index aec6e51c49..d2dbe73d8d 100644 --- a/docs/discussions/knowledge-base/333.mdx +++ b/docs/discussions/knowledge-base/333.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/334.mdx b/docs/discussions/knowledge-base/334.mdx index 16fe6d0a77..6596eb4b08 100644 --- a/docs/discussions/knowledge-base/334.mdx +++ b/docs/discussions/knowledge-base/334.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/335.mdx b/docs/discussions/knowledge-base/335.mdx index ef0b5794b7..058c00eede 100644 --- a/docs/discussions/knowledge-base/335.mdx +++ b/docs/discussions/knowledge-base/335.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/336.mdx b/docs/discussions/knowledge-base/336.mdx index f691125c2a..ffac54a89c 100644 --- a/docs/discussions/knowledge-base/336.mdx +++ b/docs/discussions/knowledge-base/336.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/337.mdx b/docs/discussions/knowledge-base/337.mdx index 611fd2a27a..f5da774b14 100644 --- a/docs/discussions/knowledge-base/337.mdx +++ b/docs/discussions/knowledge-base/337.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/338.mdx b/docs/discussions/knowledge-base/338.mdx index 84c81b7af7..b70c8f94ac 100644 --- a/docs/discussions/knowledge-base/338.mdx +++ b/docs/discussions/knowledge-base/338.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/339.mdx b/docs/discussions/knowledge-base/339.mdx index 6956d3c59d..ca29bead7d 100644 --- a/docs/discussions/knowledge-base/339.mdx +++ b/docs/discussions/knowledge-base/339.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/34.mdx b/docs/discussions/knowledge-base/34.mdx index f56941f00e..6e49cfc885 100644 --- a/docs/discussions/knowledge-base/34.mdx +++ b/docs/discussions/knowledge-base/34.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/340.mdx b/docs/discussions/knowledge-base/340.mdx index 8fc8d54fdc..e1310d913c 100644 --- a/docs/discussions/knowledge-base/340.mdx +++ b/docs/discussions/knowledge-base/340.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/341.mdx b/docs/discussions/knowledge-base/341.mdx index e9b20c5bfe..fc51da71a5 100644 --- a/docs/discussions/knowledge-base/341.mdx +++ b/docs/discussions/knowledge-base/341.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/343.mdx b/docs/discussions/knowledge-base/343.mdx index d20b38877f..e92f67e580 100644 --- a/docs/discussions/knowledge-base/343.mdx +++ b/docs/discussions/knowledge-base/343.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/344.mdx b/docs/discussions/knowledge-base/344.mdx index 1bfb30509e..60f794bff9 100644 --- a/docs/discussions/knowledge-base/344.mdx +++ b/docs/discussions/knowledge-base/344.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/345.mdx b/docs/discussions/knowledge-base/345.mdx index 569f15d431..484bc9fae6 100644 --- a/docs/discussions/knowledge-base/345.mdx +++ b/docs/discussions/knowledge-base/345.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/347.mdx b/docs/discussions/knowledge-base/347.mdx index a033b81e3a..cb560d4077 100644 --- a/docs/discussions/knowledge-base/347.mdx +++ b/docs/discussions/knowledge-base/347.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/348.mdx b/docs/discussions/knowledge-base/348.mdx index 89f7c04094..0485cdcebe 100644 --- a/docs/discussions/knowledge-base/348.mdx +++ b/docs/discussions/knowledge-base/348.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/349.mdx b/docs/discussions/knowledge-base/349.mdx index 41558c66a1..e591dd2158 100644 --- a/docs/discussions/knowledge-base/349.mdx +++ b/docs/discussions/knowledge-base/349.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/35.mdx b/docs/discussions/knowledge-base/35.mdx index 531adefafb..d2eb582080 100644 --- a/docs/discussions/knowledge-base/35.mdx +++ b/docs/discussions/knowledge-base/35.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/350.mdx b/docs/discussions/knowledge-base/350.mdx index 5a75bcf328..b35b03da1e 100644 --- a/docs/discussions/knowledge-base/350.mdx +++ b/docs/discussions/knowledge-base/350.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/351.mdx b/docs/discussions/knowledge-base/351.mdx index 74e22fea6c..1a21b3e236 100644 --- a/docs/discussions/knowledge-base/351.mdx +++ b/docs/discussions/knowledge-base/351.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/352.mdx b/docs/discussions/knowledge-base/352.mdx index 8826928ac2..1c6b2426e8 100644 --- a/docs/discussions/knowledge-base/352.mdx +++ b/docs/discussions/knowledge-base/352.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/353.mdx b/docs/discussions/knowledge-base/353.mdx index 5242d27a6e..d710c2cc3b 100644 --- a/docs/discussions/knowledge-base/353.mdx +++ b/docs/discussions/knowledge-base/353.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/355.mdx b/docs/discussions/knowledge-base/355.mdx index 61011c2848..39d1dbcc1e 100644 --- a/docs/discussions/knowledge-base/355.mdx +++ b/docs/discussions/knowledge-base/355.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/356.mdx b/docs/discussions/knowledge-base/356.mdx index 272ad61d31..cd7e4aa1a0 100644 --- a/docs/discussions/knowledge-base/356.mdx +++ b/docs/discussions/knowledge-base/356.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/357.mdx b/docs/discussions/knowledge-base/357.mdx index 2260db5634..7249e80257 100644 --- a/docs/discussions/knowledge-base/357.mdx +++ b/docs/discussions/knowledge-base/357.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/358.mdx b/docs/discussions/knowledge-base/358.mdx index 99deac1f81..3a0158efe2 100644 --- a/docs/discussions/knowledge-base/358.mdx +++ b/docs/discussions/knowledge-base/358.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/359.mdx b/docs/discussions/knowledge-base/359.mdx index b0aa024d2b..fc59a90326 100644 --- a/docs/discussions/knowledge-base/359.mdx +++ b/docs/discussions/knowledge-base/359.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/36.mdx b/docs/discussions/knowledge-base/36.mdx index f324e4203c..6b619e3fbf 100644 --- a/docs/discussions/knowledge-base/36.mdx +++ b/docs/discussions/knowledge-base/36.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/360.mdx b/docs/discussions/knowledge-base/360.mdx index 72f5581696..86a9a241a8 100644 --- a/docs/discussions/knowledge-base/360.mdx +++ b/docs/discussions/knowledge-base/360.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/366.mdx b/docs/discussions/knowledge-base/366.mdx index 2da7f41de3..d45c70a930 100644 --- a/docs/discussions/knowledge-base/366.mdx +++ b/docs/discussions/knowledge-base/366.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/37.mdx b/docs/discussions/knowledge-base/37.mdx index b0cc97c2cc..3b3db2dbf4 100644 --- a/docs/discussions/knowledge-base/37.mdx +++ b/docs/discussions/knowledge-base/37.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/38.mdx b/docs/discussions/knowledge-base/38.mdx index 545e084eb9..91a4008513 100644 --- a/docs/discussions/knowledge-base/38.mdx +++ b/docs/discussions/knowledge-base/38.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/388.mdx b/docs/discussions/knowledge-base/388.mdx index aabbfba869..0f31295026 100644 --- a/docs/discussions/knowledge-base/388.mdx +++ b/docs/discussions/knowledge-base/388.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/389.mdx b/docs/discussions/knowledge-base/389.mdx index 804670080b..4dae4d8d94 100644 --- a/docs/discussions/knowledge-base/389.mdx +++ b/docs/discussions/knowledge-base/389.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/39.mdx b/docs/discussions/knowledge-base/39.mdx index 5c5c35f89b..59ca3dba3b 100644 --- a/docs/discussions/knowledge-base/39.mdx +++ b/docs/discussions/knowledge-base/39.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/390.mdx b/docs/discussions/knowledge-base/390.mdx index 4e2f701637..b2355b00e4 100644 --- a/docs/discussions/knowledge-base/390.mdx +++ b/docs/discussions/knowledge-base/390.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/391.mdx b/docs/discussions/knowledge-base/391.mdx index ad1847a37d..e03c149ecf 100644 --- a/docs/discussions/knowledge-base/391.mdx +++ b/docs/discussions/knowledge-base/391.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/392.mdx b/docs/discussions/knowledge-base/392.mdx index bc222d7ead..4b7faabbb5 100644 --- a/docs/discussions/knowledge-base/392.mdx +++ b/docs/discussions/knowledge-base/392.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/393.mdx b/docs/discussions/knowledge-base/393.mdx index e24e7d12b5..5e10524164 100644 --- a/docs/discussions/knowledge-base/393.mdx +++ b/docs/discussions/knowledge-base/393.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/394.mdx b/docs/discussions/knowledge-base/394.mdx index c9d9853024..d685c7f2a2 100644 --- a/docs/discussions/knowledge-base/394.mdx +++ b/docs/discussions/knowledge-base/394.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/395.mdx b/docs/discussions/knowledge-base/395.mdx index 10d1f3b16b..92907309aa 100644 --- a/docs/discussions/knowledge-base/395.mdx +++ b/docs/discussions/knowledge-base/395.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/396.mdx b/docs/discussions/knowledge-base/396.mdx index 7ff094d53f..d1406f480b 100644 --- a/docs/discussions/knowledge-base/396.mdx +++ b/docs/discussions/knowledge-base/396.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/397.mdx b/docs/discussions/knowledge-base/397.mdx index 832295d16b..41b94ec59e 100644 --- a/docs/discussions/knowledge-base/397.mdx +++ b/docs/discussions/knowledge-base/397.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/398.mdx b/docs/discussions/knowledge-base/398.mdx index 03a46bef49..106a51564d 100644 --- a/docs/discussions/knowledge-base/398.mdx +++ b/docs/discussions/knowledge-base/398.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/399.mdx b/docs/discussions/knowledge-base/399.mdx index cca0bdf46e..3427b587d9 100644 --- a/docs/discussions/knowledge-base/399.mdx +++ b/docs/discussions/knowledge-base/399.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/40.mdx b/docs/discussions/knowledge-base/40.mdx index adb46acec5..17d51215d0 100644 --- a/docs/discussions/knowledge-base/40.mdx +++ b/docs/discussions/knowledge-base/40.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/400.mdx b/docs/discussions/knowledge-base/400.mdx index 1cb60dd560..6f30d1aa2c 100644 --- a/docs/discussions/knowledge-base/400.mdx +++ b/docs/discussions/knowledge-base/400.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/401.mdx b/docs/discussions/knowledge-base/401.mdx index cf255fa176..4d532dd35c 100644 --- a/docs/discussions/knowledge-base/401.mdx +++ b/docs/discussions/knowledge-base/401.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/402.mdx b/docs/discussions/knowledge-base/402.mdx index d98f0b7c54..c65021eedd 100644 --- a/docs/discussions/knowledge-base/402.mdx +++ b/docs/discussions/knowledge-base/402.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/403.mdx b/docs/discussions/knowledge-base/403.mdx index afab3c0268..e583f93990 100644 --- a/docs/discussions/knowledge-base/403.mdx +++ b/docs/discussions/knowledge-base/403.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/406.mdx b/docs/discussions/knowledge-base/406.mdx index 6e5c8660a8..3cee2ef2fd 100644 --- a/docs/discussions/knowledge-base/406.mdx +++ b/docs/discussions/knowledge-base/406.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/407.mdx b/docs/discussions/knowledge-base/407.mdx index 3407660404..038f2c1872 100644 --- a/docs/discussions/knowledge-base/407.mdx +++ b/docs/discussions/knowledge-base/407.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/408.mdx b/docs/discussions/knowledge-base/408.mdx index 88496a0b01..d714a5b00c 100644 --- a/docs/discussions/knowledge-base/408.mdx +++ b/docs/discussions/knowledge-base/408.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/409.mdx b/docs/discussions/knowledge-base/409.mdx index cb8b484fb2..1c088eb1cd 100644 --- a/docs/discussions/knowledge-base/409.mdx +++ b/docs/discussions/knowledge-base/409.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/41.mdx b/docs/discussions/knowledge-base/41.mdx index 357387f7fe..26288f45e8 100644 --- a/docs/discussions/knowledge-base/41.mdx +++ b/docs/discussions/knowledge-base/41.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/410.mdx b/docs/discussions/knowledge-base/410.mdx index c3280ca573..4492ed43cf 100644 --- a/docs/discussions/knowledge-base/410.mdx +++ b/docs/discussions/knowledge-base/410.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/411.mdx b/docs/discussions/knowledge-base/411.mdx index 4d8ac5a98e..6da5c515f7 100644 --- a/docs/discussions/knowledge-base/411.mdx +++ b/docs/discussions/knowledge-base/411.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/412.mdx b/docs/discussions/knowledge-base/412.mdx index bf02d283dd..73278ca638 100644 --- a/docs/discussions/knowledge-base/412.mdx +++ b/docs/discussions/knowledge-base/412.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/413.mdx b/docs/discussions/knowledge-base/413.mdx index ea0e02c022..36819a0306 100644 --- a/docs/discussions/knowledge-base/413.mdx +++ b/docs/discussions/knowledge-base/413.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/414.mdx b/docs/discussions/knowledge-base/414.mdx index 721ee37bab..1d01717edc 100644 --- a/docs/discussions/knowledge-base/414.mdx +++ b/docs/discussions/knowledge-base/414.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/416.mdx b/docs/discussions/knowledge-base/416.mdx index 22766e54d9..652a9ba063 100644 --- a/docs/discussions/knowledge-base/416.mdx +++ b/docs/discussions/knowledge-base/416.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/418.mdx b/docs/discussions/knowledge-base/418.mdx index bc136f68b5..6c025be894 100644 --- a/docs/discussions/knowledge-base/418.mdx +++ b/docs/discussions/knowledge-base/418.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/419.mdx b/docs/discussions/knowledge-base/419.mdx index d0966bff23..f18482e50d 100644 --- a/docs/discussions/knowledge-base/419.mdx +++ b/docs/discussions/knowledge-base/419.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/42.mdx b/docs/discussions/knowledge-base/42.mdx index 2aa72e9ec1..397fff7d80 100644 --- a/docs/discussions/knowledge-base/42.mdx +++ b/docs/discussions/knowledge-base/42.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/423.mdx b/docs/discussions/knowledge-base/423.mdx index 56cfe7b8c0..18cb8994bc 100644 --- a/docs/discussions/knowledge-base/423.mdx +++ b/docs/discussions/knowledge-base/423.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/424.mdx b/docs/discussions/knowledge-base/424.mdx index 973369669a..951c13da4f 100644 --- a/docs/discussions/knowledge-base/424.mdx +++ b/docs/discussions/knowledge-base/424.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/425.mdx b/docs/discussions/knowledge-base/425.mdx index 987c6344e4..4ca131aa84 100644 --- a/docs/discussions/knowledge-base/425.mdx +++ b/docs/discussions/knowledge-base/425.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/426.mdx b/docs/discussions/knowledge-base/426.mdx index 9e24f0f986..078fe1243a 100644 --- a/docs/discussions/knowledge-base/426.mdx +++ b/docs/discussions/knowledge-base/426.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/427.mdx b/docs/discussions/knowledge-base/427.mdx index 689403c2b6..54133ae6eb 100644 --- a/docs/discussions/knowledge-base/427.mdx +++ b/docs/discussions/knowledge-base/427.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/428.mdx b/docs/discussions/knowledge-base/428.mdx index 46b3b59ac2..12285a9c9b 100644 --- a/docs/discussions/knowledge-base/428.mdx +++ b/docs/discussions/knowledge-base/428.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/429.mdx b/docs/discussions/knowledge-base/429.mdx index 8b10855a3c..b22af32d2c 100644 --- a/docs/discussions/knowledge-base/429.mdx +++ b/docs/discussions/knowledge-base/429.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/43.mdx b/docs/discussions/knowledge-base/43.mdx index 0ffa9f3dbf..c8b1de42fb 100644 --- a/docs/discussions/knowledge-base/43.mdx +++ b/docs/discussions/knowledge-base/43.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/430.mdx b/docs/discussions/knowledge-base/430.mdx index cd630d9e11..c8a91da439 100644 --- a/docs/discussions/knowledge-base/430.mdx +++ b/docs/discussions/knowledge-base/430.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/431.mdx b/docs/discussions/knowledge-base/431.mdx index c8600c0532..b1af09725a 100644 --- a/docs/discussions/knowledge-base/431.mdx +++ b/docs/discussions/knowledge-base/431.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/432.mdx b/docs/discussions/knowledge-base/432.mdx index 8730638087..23033e74a4 100644 --- a/docs/discussions/knowledge-base/432.mdx +++ b/docs/discussions/knowledge-base/432.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/434.mdx b/docs/discussions/knowledge-base/434.mdx index 7963164161..c5dcdbfe0d 100644 --- a/docs/discussions/knowledge-base/434.mdx +++ b/docs/discussions/knowledge-base/434.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/435.mdx b/docs/discussions/knowledge-base/435.mdx index d2c87b9408..1eb4235818 100644 --- a/docs/discussions/knowledge-base/435.mdx +++ b/docs/discussions/knowledge-base/435.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/436.mdx b/docs/discussions/knowledge-base/436.mdx index a89e6e451e..407e0d5d62 100644 --- a/docs/discussions/knowledge-base/436.mdx +++ b/docs/discussions/knowledge-base/436.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/437.mdx b/docs/discussions/knowledge-base/437.mdx index d103afa198..1a7ebb02c0 100644 --- a/docs/discussions/knowledge-base/437.mdx +++ b/docs/discussions/knowledge-base/437.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/438.mdx b/docs/discussions/knowledge-base/438.mdx index aad6355098..a8088da099 100644 --- a/docs/discussions/knowledge-base/438.mdx +++ b/docs/discussions/knowledge-base/438.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/439.mdx b/docs/discussions/knowledge-base/439.mdx index 7a1a37ec0c..bb7b96fbaa 100644 --- a/docs/discussions/knowledge-base/439.mdx +++ b/docs/discussions/knowledge-base/439.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/440.mdx b/docs/discussions/knowledge-base/440.mdx index 2e5cde5cac..e209eda511 100644 --- a/docs/discussions/knowledge-base/440.mdx +++ b/docs/discussions/knowledge-base/440.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/441.mdx b/docs/discussions/knowledge-base/441.mdx index dbb9cb511f..20d811bd0d 100644 --- a/docs/discussions/knowledge-base/441.mdx +++ b/docs/discussions/knowledge-base/441.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/442.mdx b/docs/discussions/knowledge-base/442.mdx index 538cb91173..fcb15ddb67 100644 --- a/docs/discussions/knowledge-base/442.mdx +++ b/docs/discussions/knowledge-base/442.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/443.mdx b/docs/discussions/knowledge-base/443.mdx index c196b9eac5..dad9e0e2b7 100644 --- a/docs/discussions/knowledge-base/443.mdx +++ b/docs/discussions/knowledge-base/443.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/444.mdx b/docs/discussions/knowledge-base/444.mdx index fbe3a5adc0..27fa8808b2 100644 --- a/docs/discussions/knowledge-base/444.mdx +++ b/docs/discussions/knowledge-base/444.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/445.mdx b/docs/discussions/knowledge-base/445.mdx index 0a278ad7c6..8a58c2c5fe 100644 --- a/docs/discussions/knowledge-base/445.mdx +++ b/docs/discussions/knowledge-base/445.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/446.mdx b/docs/discussions/knowledge-base/446.mdx index 84d3509927..6feea505ea 100644 --- a/docs/discussions/knowledge-base/446.mdx +++ b/docs/discussions/knowledge-base/446.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/447.mdx b/docs/discussions/knowledge-base/447.mdx index 253b08c512..0e3046218e 100644 --- a/docs/discussions/knowledge-base/447.mdx +++ b/docs/discussions/knowledge-base/447.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/448.mdx b/docs/discussions/knowledge-base/448.mdx index b05128962d..25b4dcb44d 100644 --- a/docs/discussions/knowledge-base/448.mdx +++ b/docs/discussions/knowledge-base/448.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/449.mdx b/docs/discussions/knowledge-base/449.mdx index 2b307dec2c..1e10bd7618 100644 --- a/docs/discussions/knowledge-base/449.mdx +++ b/docs/discussions/knowledge-base/449.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/45.mdx b/docs/discussions/knowledge-base/45.mdx index 0e62d2dfc7..7e138f862c 100644 --- a/docs/discussions/knowledge-base/45.mdx +++ b/docs/discussions/knowledge-base/45.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/450.mdx b/docs/discussions/knowledge-base/450.mdx index 1a0835dd73..8b66ee63b1 100644 --- a/docs/discussions/knowledge-base/450.mdx +++ b/docs/discussions/knowledge-base/450.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/451.mdx b/docs/discussions/knowledge-base/451.mdx index b6be1913c5..1010398867 100644 --- a/docs/discussions/knowledge-base/451.mdx +++ b/docs/discussions/knowledge-base/451.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/452.mdx b/docs/discussions/knowledge-base/452.mdx index f7617d2482..f4fce10eee 100644 --- a/docs/discussions/knowledge-base/452.mdx +++ b/docs/discussions/knowledge-base/452.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/453.mdx b/docs/discussions/knowledge-base/453.mdx index 136d92f4eb..f9427119a2 100644 --- a/docs/discussions/knowledge-base/453.mdx +++ b/docs/discussions/knowledge-base/453.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/454.mdx b/docs/discussions/knowledge-base/454.mdx index 5e544e9cdc..15ba973c68 100644 --- a/docs/discussions/knowledge-base/454.mdx +++ b/docs/discussions/knowledge-base/454.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/463.mdx b/docs/discussions/knowledge-base/463.mdx index 2d0ab526e2..38622c5169 100644 --- a/docs/discussions/knowledge-base/463.mdx +++ b/docs/discussions/knowledge-base/463.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/464.mdx b/docs/discussions/knowledge-base/464.mdx index 1392da03b3..d945bf0de8 100644 --- a/docs/discussions/knowledge-base/464.mdx +++ b/docs/discussions/knowledge-base/464.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/465.mdx b/docs/discussions/knowledge-base/465.mdx index 01f23df903..fc44f827d1 100644 --- a/docs/discussions/knowledge-base/465.mdx +++ b/docs/discussions/knowledge-base/465.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/467.mdx b/docs/discussions/knowledge-base/467.mdx index af6b35b0ac..67e3aadd84 100644 --- a/docs/discussions/knowledge-base/467.mdx +++ b/docs/discussions/knowledge-base/467.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/468.mdx b/docs/discussions/knowledge-base/468.mdx index cdaa651931..dc23cc4d79 100644 --- a/docs/discussions/knowledge-base/468.mdx +++ b/docs/discussions/knowledge-base/468.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/469.mdx b/docs/discussions/knowledge-base/469.mdx index 28e041ebfd..a93b317b5d 100644 --- a/docs/discussions/knowledge-base/469.mdx +++ b/docs/discussions/knowledge-base/469.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/47.mdx b/docs/discussions/knowledge-base/47.mdx index d48b3d0278..4edc0ef077 100644 --- a/docs/discussions/knowledge-base/47.mdx +++ b/docs/discussions/knowledge-base/47.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/470.mdx b/docs/discussions/knowledge-base/470.mdx index 8b560df0d2..fc5a204215 100644 --- a/docs/discussions/knowledge-base/470.mdx +++ b/docs/discussions/knowledge-base/470.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/471.mdx b/docs/discussions/knowledge-base/471.mdx index ec49b3d45d..1120b7d254 100644 --- a/docs/discussions/knowledge-base/471.mdx +++ b/docs/discussions/knowledge-base/471.mdx @@ -19,9 +19,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/472.mdx b/docs/discussions/knowledge-base/472.mdx index 0555ad2719..40e68f3f41 100644 --- a/docs/discussions/knowledge-base/472.mdx +++ b/docs/discussions/knowledge-base/472.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/473.mdx b/docs/discussions/knowledge-base/473.mdx index 105d232a49..71913f7b83 100644 --- a/docs/discussions/knowledge-base/473.mdx +++ b/docs/discussions/knowledge-base/473.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/474.mdx b/docs/discussions/knowledge-base/474.mdx index 22f9a7e671..daac051bfb 100644 --- a/docs/discussions/knowledge-base/474.mdx +++ b/docs/discussions/knowledge-base/474.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/475.mdx b/docs/discussions/knowledge-base/475.mdx index 082c4b25dc..dac70a0018 100644 --- a/docs/discussions/knowledge-base/475.mdx +++ b/docs/discussions/knowledge-base/475.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/476.mdx b/docs/discussions/knowledge-base/476.mdx index 0e52844385..0baa6f4779 100644 --- a/docs/discussions/knowledge-base/476.mdx +++ b/docs/discussions/knowledge-base/476.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/477.mdx b/docs/discussions/knowledge-base/477.mdx index 0bccc3157d..7ab87f3839 100644 --- a/docs/discussions/knowledge-base/477.mdx +++ b/docs/discussions/knowledge-base/477.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/478.mdx b/docs/discussions/knowledge-base/478.mdx index 211fddf004..9091789065 100644 --- a/docs/discussions/knowledge-base/478.mdx +++ b/docs/discussions/knowledge-base/478.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/479.mdx b/docs/discussions/knowledge-base/479.mdx index 80ceb6d470..025fc78c50 100644 --- a/docs/discussions/knowledge-base/479.mdx +++ b/docs/discussions/knowledge-base/479.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/480.mdx b/docs/discussions/knowledge-base/480.mdx index 9c7a800486..ddd5b1279a 100644 --- a/docs/discussions/knowledge-base/480.mdx +++ b/docs/discussions/knowledge-base/480.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/481.mdx b/docs/discussions/knowledge-base/481.mdx index 60f35e137b..2bc587c5e9 100644 --- a/docs/discussions/knowledge-base/481.mdx +++ b/docs/discussions/knowledge-base/481.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/483.mdx b/docs/discussions/knowledge-base/483.mdx index 517b3c9489..58ebd44062 100644 --- a/docs/discussions/knowledge-base/483.mdx +++ b/docs/discussions/knowledge-base/483.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/484.mdx b/docs/discussions/knowledge-base/484.mdx index 9559086e69..8f4f9c1362 100644 --- a/docs/discussions/knowledge-base/484.mdx +++ b/docs/discussions/knowledge-base/484.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/485.mdx b/docs/discussions/knowledge-base/485.mdx index f3e2409132..c0faa576cd 100644 --- a/docs/discussions/knowledge-base/485.mdx +++ b/docs/discussions/knowledge-base/485.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/486.mdx b/docs/discussions/knowledge-base/486.mdx index 45973206b2..e06d6d5d98 100644 --- a/docs/discussions/knowledge-base/486.mdx +++ b/docs/discussions/knowledge-base/486.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/488.mdx b/docs/discussions/knowledge-base/488.mdx index 2eddf31c52..60f52d7b4b 100644 --- a/docs/discussions/knowledge-base/488.mdx +++ b/docs/discussions/knowledge-base/488.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/489.mdx b/docs/discussions/knowledge-base/489.mdx index a5340359c9..1236dd8cda 100644 --- a/docs/discussions/knowledge-base/489.mdx +++ b/docs/discussions/knowledge-base/489.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/49.mdx b/docs/discussions/knowledge-base/49.mdx index 53be9f1766..ce239813d7 100644 --- a/docs/discussions/knowledge-base/49.mdx +++ b/docs/discussions/knowledge-base/49.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/491.mdx b/docs/discussions/knowledge-base/491.mdx index 96178884ba..80a5fb68d1 100644 --- a/docs/discussions/knowledge-base/491.mdx +++ b/docs/discussions/knowledge-base/491.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/492.mdx b/docs/discussions/knowledge-base/492.mdx index 90a47d3a11..4e2afabb5d 100644 --- a/docs/discussions/knowledge-base/492.mdx +++ b/docs/discussions/knowledge-base/492.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/493.mdx b/docs/discussions/knowledge-base/493.mdx index 25c506575e..7f00ab3add 100644 --- a/docs/discussions/knowledge-base/493.mdx +++ b/docs/discussions/knowledge-base/493.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/494.mdx b/docs/discussions/knowledge-base/494.mdx index 153fe9251c..1bb1ccc721 100644 --- a/docs/discussions/knowledge-base/494.mdx +++ b/docs/discussions/knowledge-base/494.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/495.mdx b/docs/discussions/knowledge-base/495.mdx index 3614697e98..eba9a7d477 100644 --- a/docs/discussions/knowledge-base/495.mdx +++ b/docs/discussions/knowledge-base/495.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/496.mdx b/docs/discussions/knowledge-base/496.mdx index c4e325e69f..e999901115 100644 --- a/docs/discussions/knowledge-base/496.mdx +++ b/docs/discussions/knowledge-base/496.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/497.mdx b/docs/discussions/knowledge-base/497.mdx index f23211bb35..5196b2ed5c 100644 --- a/docs/discussions/knowledge-base/497.mdx +++ b/docs/discussions/knowledge-base/497.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/498.mdx b/docs/discussions/knowledge-base/498.mdx index faede8f2ad..5c8b78615a 100644 --- a/docs/discussions/knowledge-base/498.mdx +++ b/docs/discussions/knowledge-base/498.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/499.mdx b/docs/discussions/knowledge-base/499.mdx index 80422fdb70..433228441f 100644 --- a/docs/discussions/knowledge-base/499.mdx +++ b/docs/discussions/knowledge-base/499.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/5.mdx b/docs/discussions/knowledge-base/5.mdx index 350ef04a49..c478c9e2df 100644 --- a/docs/discussions/knowledge-base/5.mdx +++ b/docs/discussions/knowledge-base/5.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/50.mdx b/docs/discussions/knowledge-base/50.mdx index 56570ccc09..68e1a6e642 100644 --- a/docs/discussions/knowledge-base/50.mdx +++ b/docs/discussions/knowledge-base/50.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/500.mdx b/docs/discussions/knowledge-base/500.mdx index d24c96bd90..465e767dac 100644 --- a/docs/discussions/knowledge-base/500.mdx +++ b/docs/discussions/knowledge-base/500.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/501.mdx b/docs/discussions/knowledge-base/501.mdx index 413313570d..ff40540d7a 100644 --- a/docs/discussions/knowledge-base/501.mdx +++ b/docs/discussions/knowledge-base/501.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/502.mdx b/docs/discussions/knowledge-base/502.mdx index 23f3c11bc0..a898e21bad 100644 --- a/docs/discussions/knowledge-base/502.mdx +++ b/docs/discussions/knowledge-base/502.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/505.mdx b/docs/discussions/knowledge-base/505.mdx index 7ba9231f0d..07af8aa525 100644 --- a/docs/discussions/knowledge-base/505.mdx +++ b/docs/discussions/knowledge-base/505.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/508.mdx b/docs/discussions/knowledge-base/508.mdx index 8671873b60..ed8205c0e2 100644 --- a/docs/discussions/knowledge-base/508.mdx +++ b/docs/discussions/knowledge-base/508.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/509.mdx b/docs/discussions/knowledge-base/509.mdx index 8cbc4e71fb..ac80bdeae2 100644 --- a/docs/discussions/knowledge-base/509.mdx +++ b/docs/discussions/knowledge-base/509.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/51.mdx b/docs/discussions/knowledge-base/51.mdx index 43984448e8..0fad543199 100644 --- a/docs/discussions/knowledge-base/51.mdx +++ b/docs/discussions/knowledge-base/51.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/510.mdx b/docs/discussions/knowledge-base/510.mdx index 8a92ebabdc..b660e46091 100644 --- a/docs/discussions/knowledge-base/510.mdx +++ b/docs/discussions/knowledge-base/510.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/511.mdx b/docs/discussions/knowledge-base/511.mdx index 2da469be33..3abf65375f 100644 --- a/docs/discussions/knowledge-base/511.mdx +++ b/docs/discussions/knowledge-base/511.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/512.mdx b/docs/discussions/knowledge-base/512.mdx index 9560b2a2bd..3313bb24d8 100644 --- a/docs/discussions/knowledge-base/512.mdx +++ b/docs/discussions/knowledge-base/512.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/514.mdx b/docs/discussions/knowledge-base/514.mdx index 461da532e1..31c4eabc05 100644 --- a/docs/discussions/knowledge-base/514.mdx +++ b/docs/discussions/knowledge-base/514.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/515.mdx b/docs/discussions/knowledge-base/515.mdx index d247f376a3..1a3d100acf 100644 --- a/docs/discussions/knowledge-base/515.mdx +++ b/docs/discussions/knowledge-base/515.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/517.mdx b/docs/discussions/knowledge-base/517.mdx index 04ba2bb45b..3ea868b3a9 100644 --- a/docs/discussions/knowledge-base/517.mdx +++ b/docs/discussions/knowledge-base/517.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/518.mdx b/docs/discussions/knowledge-base/518.mdx index e3ed105423..aabb912649 100644 --- a/docs/discussions/knowledge-base/518.mdx +++ b/docs/discussions/knowledge-base/518.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/519.mdx b/docs/discussions/knowledge-base/519.mdx index 665d8df311..f341ac7abd 100644 --- a/docs/discussions/knowledge-base/519.mdx +++ b/docs/discussions/knowledge-base/519.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/52.mdx b/docs/discussions/knowledge-base/52.mdx index 5cbb66a2eb..8a1f23b147 100644 --- a/docs/discussions/knowledge-base/52.mdx +++ b/docs/discussions/knowledge-base/52.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/520.mdx b/docs/discussions/knowledge-base/520.mdx index e9e82e0596..010b26cf2d 100644 --- a/docs/discussions/knowledge-base/520.mdx +++ b/docs/discussions/knowledge-base/520.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/521.mdx b/docs/discussions/knowledge-base/521.mdx index 2dc4c9c077..27a13ea8e4 100644 --- a/docs/discussions/knowledge-base/521.mdx +++ b/docs/discussions/knowledge-base/521.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/522.mdx b/docs/discussions/knowledge-base/522.mdx index b42468d839..c839d5e289 100644 --- a/docs/discussions/knowledge-base/522.mdx +++ b/docs/discussions/knowledge-base/522.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/523.mdx b/docs/discussions/knowledge-base/523.mdx index cffcf1a00b..33f2299eac 100644 --- a/docs/discussions/knowledge-base/523.mdx +++ b/docs/discussions/knowledge-base/523.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/524.mdx b/docs/discussions/knowledge-base/524.mdx index cfecbe16a4..5652e31d3d 100644 --- a/docs/discussions/knowledge-base/524.mdx +++ b/docs/discussions/knowledge-base/524.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/525.mdx b/docs/discussions/knowledge-base/525.mdx index ab89ee370f..49cdff48af 100644 --- a/docs/discussions/knowledge-base/525.mdx +++ b/docs/discussions/knowledge-base/525.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/526.mdx b/docs/discussions/knowledge-base/526.mdx index 087891fb9d..b23f011e83 100644 --- a/docs/discussions/knowledge-base/526.mdx +++ b/docs/discussions/knowledge-base/526.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/528.mdx b/docs/discussions/knowledge-base/528.mdx index 20da0076b0..d5ec4c1645 100644 --- a/docs/discussions/knowledge-base/528.mdx +++ b/docs/discussions/knowledge-base/528.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/529.mdx b/docs/discussions/knowledge-base/529.mdx index 59d830da13..ec99d8a995 100644 --- a/docs/discussions/knowledge-base/529.mdx +++ b/docs/discussions/knowledge-base/529.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/53.mdx b/docs/discussions/knowledge-base/53.mdx index 93e97c40ed..3d4a7f0ff3 100644 --- a/docs/discussions/knowledge-base/53.mdx +++ b/docs/discussions/knowledge-base/53.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/530.mdx b/docs/discussions/knowledge-base/530.mdx index fd5c732b85..6dab0ed4a6 100644 --- a/docs/discussions/knowledge-base/530.mdx +++ b/docs/discussions/knowledge-base/530.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/531.mdx b/docs/discussions/knowledge-base/531.mdx index 215e0ddca2..04bbc2723d 100644 --- a/docs/discussions/knowledge-base/531.mdx +++ b/docs/discussions/knowledge-base/531.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/532.mdx b/docs/discussions/knowledge-base/532.mdx index 35b6b5ff34..c5da0d484c 100644 --- a/docs/discussions/knowledge-base/532.mdx +++ b/docs/discussions/knowledge-base/532.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/533.mdx b/docs/discussions/knowledge-base/533.mdx index 0bbd35b829..49cbb632ff 100644 --- a/docs/discussions/knowledge-base/533.mdx +++ b/docs/discussions/knowledge-base/533.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/535.mdx b/docs/discussions/knowledge-base/535.mdx index 9057150b1e..1299172b88 100644 --- a/docs/discussions/knowledge-base/535.mdx +++ b/docs/discussions/knowledge-base/535.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/536.mdx b/docs/discussions/knowledge-base/536.mdx index 311a31d2b3..7aa74821c9 100644 --- a/docs/discussions/knowledge-base/536.mdx +++ b/docs/discussions/knowledge-base/536.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/537.mdx b/docs/discussions/knowledge-base/537.mdx index 73dac709ab..8128254ce2 100644 --- a/docs/discussions/knowledge-base/537.mdx +++ b/docs/discussions/knowledge-base/537.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/538.mdx b/docs/discussions/knowledge-base/538.mdx index bdb0e16f54..42a6013735 100644 --- a/docs/discussions/knowledge-base/538.mdx +++ b/docs/discussions/knowledge-base/538.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/539.mdx b/docs/discussions/knowledge-base/539.mdx index b21835ff9d..81c7feb0d0 100644 --- a/docs/discussions/knowledge-base/539.mdx +++ b/docs/discussions/knowledge-base/539.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/54.mdx b/docs/discussions/knowledge-base/54.mdx index 387546d435..7ffaea4ff3 100644 --- a/docs/discussions/knowledge-base/54.mdx +++ b/docs/discussions/knowledge-base/54.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/540.mdx b/docs/discussions/knowledge-base/540.mdx index c8a7b02ee2..cca453b973 100644 --- a/docs/discussions/knowledge-base/540.mdx +++ b/docs/discussions/knowledge-base/540.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/541.mdx b/docs/discussions/knowledge-base/541.mdx index df35566ac2..15737bbd30 100644 --- a/docs/discussions/knowledge-base/541.mdx +++ b/docs/discussions/knowledge-base/541.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/542.mdx b/docs/discussions/knowledge-base/542.mdx index b37a56891c..6ccd0ea032 100644 --- a/docs/discussions/knowledge-base/542.mdx +++ b/docs/discussions/knowledge-base/542.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/543.mdx b/docs/discussions/knowledge-base/543.mdx index a5f996e9fe..c95d560f67 100644 --- a/docs/discussions/knowledge-base/543.mdx +++ b/docs/discussions/knowledge-base/543.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/544.mdx b/docs/discussions/knowledge-base/544.mdx index 2b3f51edd9..984489b451 100644 --- a/docs/discussions/knowledge-base/544.mdx +++ b/docs/discussions/knowledge-base/544.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/545.mdx b/docs/discussions/knowledge-base/545.mdx index f45b107b08..061a7c03f8 100644 --- a/docs/discussions/knowledge-base/545.mdx +++ b/docs/discussions/knowledge-base/545.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/546.mdx b/docs/discussions/knowledge-base/546.mdx index 82dbf809b3..434423dab2 100644 --- a/docs/discussions/knowledge-base/546.mdx +++ b/docs/discussions/knowledge-base/546.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/547.mdx b/docs/discussions/knowledge-base/547.mdx index 5714a0abcb..438d329ec6 100644 --- a/docs/discussions/knowledge-base/547.mdx +++ b/docs/discussions/knowledge-base/547.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/548.mdx b/docs/discussions/knowledge-base/548.mdx index 604a70c309..9c9d9e3689 100644 --- a/docs/discussions/knowledge-base/548.mdx +++ b/docs/discussions/knowledge-base/548.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/55.mdx b/docs/discussions/knowledge-base/55.mdx index 83a18701b0..6e36b0b39c 100644 --- a/docs/discussions/knowledge-base/55.mdx +++ b/docs/discussions/knowledge-base/55.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/551.mdx b/docs/discussions/knowledge-base/551.mdx index 29fc0678b5..cb36f72e11 100644 --- a/docs/discussions/knowledge-base/551.mdx +++ b/docs/discussions/knowledge-base/551.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/552.mdx b/docs/discussions/knowledge-base/552.mdx index fe10674ab6..dc15637d35 100644 --- a/docs/discussions/knowledge-base/552.mdx +++ b/docs/discussions/knowledge-base/552.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/553.mdx b/docs/discussions/knowledge-base/553.mdx index 8587d21cc8..55868cc004 100644 --- a/docs/discussions/knowledge-base/553.mdx +++ b/docs/discussions/knowledge-base/553.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/554.mdx b/docs/discussions/knowledge-base/554.mdx index f248ccbb2b..8fc1f3e1c7 100644 --- a/docs/discussions/knowledge-base/554.mdx +++ b/docs/discussions/knowledge-base/554.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/555.mdx b/docs/discussions/knowledge-base/555.mdx index 0f5edd78a5..058e87ea48 100644 --- a/docs/discussions/knowledge-base/555.mdx +++ b/docs/discussions/knowledge-base/555.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/556.mdx b/docs/discussions/knowledge-base/556.mdx index 9a611f8880..068617ec42 100644 --- a/docs/discussions/knowledge-base/556.mdx +++ b/docs/discussions/knowledge-base/556.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/557.mdx b/docs/discussions/knowledge-base/557.mdx index 465ca73bf4..5391deae26 100644 --- a/docs/discussions/knowledge-base/557.mdx +++ b/docs/discussions/knowledge-base/557.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/558.mdx b/docs/discussions/knowledge-base/558.mdx index f4fb2ae25e..1ee2143fb0 100644 --- a/docs/discussions/knowledge-base/558.mdx +++ b/docs/discussions/knowledge-base/558.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/559.mdx b/docs/discussions/knowledge-base/559.mdx index 7b93277eb9..5dc1e7c6bb 100644 --- a/docs/discussions/knowledge-base/559.mdx +++ b/docs/discussions/knowledge-base/559.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/56.mdx b/docs/discussions/knowledge-base/56.mdx index 9154e1b62c..1c179fa7c1 100644 --- a/docs/discussions/knowledge-base/56.mdx +++ b/docs/discussions/knowledge-base/56.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/560.mdx b/docs/discussions/knowledge-base/560.mdx index 6ee215da66..b2aae8a041 100644 --- a/docs/discussions/knowledge-base/560.mdx +++ b/docs/discussions/knowledge-base/560.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/561.mdx b/docs/discussions/knowledge-base/561.mdx index 939d8799ee..e23de2d14b 100644 --- a/docs/discussions/knowledge-base/561.mdx +++ b/docs/discussions/knowledge-base/561.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/562.mdx b/docs/discussions/knowledge-base/562.mdx index 318d4d4ce1..b7f63d9ce8 100644 --- a/docs/discussions/knowledge-base/562.mdx +++ b/docs/discussions/knowledge-base/562.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/563.mdx b/docs/discussions/knowledge-base/563.mdx index ebd173b78f..0e78445848 100644 --- a/docs/discussions/knowledge-base/563.mdx +++ b/docs/discussions/knowledge-base/563.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/564.mdx b/docs/discussions/knowledge-base/564.mdx index 3c490bde1c..465f587cdf 100644 --- a/docs/discussions/knowledge-base/564.mdx +++ b/docs/discussions/knowledge-base/564.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/569.mdx b/docs/discussions/knowledge-base/569.mdx index b051070cde..de97d1bb14 100644 --- a/docs/discussions/knowledge-base/569.mdx +++ b/docs/discussions/knowledge-base/569.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/57.mdx b/docs/discussions/knowledge-base/57.mdx index 925dddf7fc..5e7b5a0bdb 100644 --- a/docs/discussions/knowledge-base/57.mdx +++ b/docs/discussions/knowledge-base/57.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/571.mdx b/docs/discussions/knowledge-base/571.mdx index 42d69aeff1..b50168b635 100644 --- a/docs/discussions/knowledge-base/571.mdx +++ b/docs/discussions/knowledge-base/571.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/573.mdx b/docs/discussions/knowledge-base/573.mdx index 82c07d2697..01b1f0af18 100644 --- a/docs/discussions/knowledge-base/573.mdx +++ b/docs/discussions/knowledge-base/573.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/575.mdx b/docs/discussions/knowledge-base/575.mdx index e9528185b3..5669fb3eab 100644 --- a/docs/discussions/knowledge-base/575.mdx +++ b/docs/discussions/knowledge-base/575.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/576.mdx b/docs/discussions/knowledge-base/576.mdx index 188d75212d..5bd23affae 100644 --- a/docs/discussions/knowledge-base/576.mdx +++ b/docs/discussions/knowledge-base/576.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/577.mdx b/docs/discussions/knowledge-base/577.mdx index 703441a414..844a0ad0d7 100644 --- a/docs/discussions/knowledge-base/577.mdx +++ b/docs/discussions/knowledge-base/577.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/579.mdx b/docs/discussions/knowledge-base/579.mdx index 0b1e70a19a..e9222fff0d 100644 --- a/docs/discussions/knowledge-base/579.mdx +++ b/docs/discussions/knowledge-base/579.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/58.mdx b/docs/discussions/knowledge-base/58.mdx index edaf4698a3..fea3b7134a 100644 --- a/docs/discussions/knowledge-base/58.mdx +++ b/docs/discussions/knowledge-base/58.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/581.mdx b/docs/discussions/knowledge-base/581.mdx index 3ef3c2332f..d024200811 100644 --- a/docs/discussions/knowledge-base/581.mdx +++ b/docs/discussions/knowledge-base/581.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/582.mdx b/docs/discussions/knowledge-base/582.mdx index 4234b98de1..63dd6efe99 100644 --- a/docs/discussions/knowledge-base/582.mdx +++ b/docs/discussions/knowledge-base/582.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/586.mdx b/docs/discussions/knowledge-base/586.mdx index c6230ef171..49496582b3 100644 --- a/docs/discussions/knowledge-base/586.mdx +++ b/docs/discussions/knowledge-base/586.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/587.mdx b/docs/discussions/knowledge-base/587.mdx index 5f0ad638c7..76e19b432b 100644 --- a/docs/discussions/knowledge-base/587.mdx +++ b/docs/discussions/knowledge-base/587.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/59.mdx b/docs/discussions/knowledge-base/59.mdx index 34f5cf5488..587b13896e 100644 --- a/docs/discussions/knowledge-base/59.mdx +++ b/docs/discussions/knowledge-base/59.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/6.mdx b/docs/discussions/knowledge-base/6.mdx index ad7606dca5..5978ed23d3 100644 --- a/docs/discussions/knowledge-base/6.mdx +++ b/docs/discussions/knowledge-base/6.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/60.mdx b/docs/discussions/knowledge-base/60.mdx index cdbc3a035f..98ffd983ed 100644 --- a/docs/discussions/knowledge-base/60.mdx +++ b/docs/discussions/knowledge-base/60.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/600.mdx b/docs/discussions/knowledge-base/600.mdx index f5a8ec7c55..7e0f44f8b7 100644 --- a/docs/discussions/knowledge-base/600.mdx +++ b/docs/discussions/knowledge-base/600.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/602.mdx b/docs/discussions/knowledge-base/602.mdx index 709d0ccf6d..743ed41d52 100644 --- a/docs/discussions/knowledge-base/602.mdx +++ b/docs/discussions/knowledge-base/602.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/603.mdx b/docs/discussions/knowledge-base/603.mdx index c74bd210eb..98a924fa87 100644 --- a/docs/discussions/knowledge-base/603.mdx +++ b/docs/discussions/knowledge-base/603.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/606.mdx b/docs/discussions/knowledge-base/606.mdx index 6440e04c25..ab207f7db2 100644 --- a/docs/discussions/knowledge-base/606.mdx +++ b/docs/discussions/knowledge-base/606.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/61.mdx b/docs/discussions/knowledge-base/61.mdx index 6aa455fde2..2729347eed 100644 --- a/docs/discussions/knowledge-base/61.mdx +++ b/docs/discussions/knowledge-base/61.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/611.mdx b/docs/discussions/knowledge-base/611.mdx index f38ed2de4b..61ca6381c9 100644 --- a/docs/discussions/knowledge-base/611.mdx +++ b/docs/discussions/knowledge-base/611.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/614.mdx b/docs/discussions/knowledge-base/614.mdx index 6c6ae78081..9f72be5ba5 100644 --- a/docs/discussions/knowledge-base/614.mdx +++ b/docs/discussions/knowledge-base/614.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/615.mdx b/docs/discussions/knowledge-base/615.mdx index 4a37576668..3e4ad8ef4f 100644 --- a/docs/discussions/knowledge-base/615.mdx +++ b/docs/discussions/knowledge-base/615.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/617.mdx b/docs/discussions/knowledge-base/617.mdx index bfb5b6d857..cdf41027e7 100644 --- a/docs/discussions/knowledge-base/617.mdx +++ b/docs/discussions/knowledge-base/617.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/619.mdx b/docs/discussions/knowledge-base/619.mdx index 0e3ce8b53b..e8fd959d0c 100644 --- a/docs/discussions/knowledge-base/619.mdx +++ b/docs/discussions/knowledge-base/619.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/62.mdx b/docs/discussions/knowledge-base/62.mdx index 4247703305..d5a2175e76 100644 --- a/docs/discussions/knowledge-base/62.mdx +++ b/docs/discussions/knowledge-base/62.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/620.mdx b/docs/discussions/knowledge-base/620.mdx index 6a847ebaf3..70aed6370e 100644 --- a/docs/discussions/knowledge-base/620.mdx +++ b/docs/discussions/knowledge-base/620.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/622.mdx b/docs/discussions/knowledge-base/622.mdx index b7ff15451c..24e26832cd 100644 --- a/docs/discussions/knowledge-base/622.mdx +++ b/docs/discussions/knowledge-base/622.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/623.mdx b/docs/discussions/knowledge-base/623.mdx index f105d2a45f..0519efac52 100644 --- a/docs/discussions/knowledge-base/623.mdx +++ b/docs/discussions/knowledge-base/623.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/624.mdx b/docs/discussions/knowledge-base/624.mdx index 8a038bb149..990ceeb263 100644 --- a/docs/discussions/knowledge-base/624.mdx +++ b/docs/discussions/knowledge-base/624.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/625.mdx b/docs/discussions/knowledge-base/625.mdx index b68617ade4..88802f5032 100644 --- a/docs/discussions/knowledge-base/625.mdx +++ b/docs/discussions/knowledge-base/625.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/626.mdx b/docs/discussions/knowledge-base/626.mdx index c0cb9eea0d..9e595a2ddc 100644 --- a/docs/discussions/knowledge-base/626.mdx +++ b/docs/discussions/knowledge-base/626.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/629.mdx b/docs/discussions/knowledge-base/629.mdx index dbc263be39..3c568af237 100644 --- a/docs/discussions/knowledge-base/629.mdx +++ b/docs/discussions/knowledge-base/629.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/632.mdx b/docs/discussions/knowledge-base/632.mdx index f977558373..1654d2d81f 100644 --- a/docs/discussions/knowledge-base/632.mdx +++ b/docs/discussions/knowledge-base/632.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/633.mdx b/docs/discussions/knowledge-base/633.mdx index 0019d53a01..5a6322cc94 100644 --- a/docs/discussions/knowledge-base/633.mdx +++ b/docs/discussions/knowledge-base/633.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/634.mdx b/docs/discussions/knowledge-base/634.mdx index 73ba0bcd20..5602d7b6ba 100644 --- a/docs/discussions/knowledge-base/634.mdx +++ b/docs/discussions/knowledge-base/634.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/635.mdx b/docs/discussions/knowledge-base/635.mdx index 42121753a3..407bbbc1b2 100644 --- a/docs/discussions/knowledge-base/635.mdx +++ b/docs/discussions/knowledge-base/635.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/636.mdx b/docs/discussions/knowledge-base/636.mdx index fd890cc0db..23649b221b 100644 --- a/docs/discussions/knowledge-base/636.mdx +++ b/docs/discussions/knowledge-base/636.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/637.mdx b/docs/discussions/knowledge-base/637.mdx index c9a4aa2c68..841048021e 100644 --- a/docs/discussions/knowledge-base/637.mdx +++ b/docs/discussions/knowledge-base/637.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/64.mdx b/docs/discussions/knowledge-base/64.mdx index b2d121b531..275a660f89 100644 --- a/docs/discussions/knowledge-base/64.mdx +++ b/docs/discussions/knowledge-base/64.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/642.mdx b/docs/discussions/knowledge-base/642.mdx index d6bf8a7266..82e56db63e 100644 --- a/docs/discussions/knowledge-base/642.mdx +++ b/docs/discussions/knowledge-base/642.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/643.mdx b/docs/discussions/knowledge-base/643.mdx index 71034ebbe9..a9a75aa3fa 100644 --- a/docs/discussions/knowledge-base/643.mdx +++ b/docs/discussions/knowledge-base/643.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/646.mdx b/docs/discussions/knowledge-base/646.mdx index d4e257f923..e36229a6aa 100644 --- a/docs/discussions/knowledge-base/646.mdx +++ b/docs/discussions/knowledge-base/646.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/647.mdx b/docs/discussions/knowledge-base/647.mdx index e7c94d454a..a87bf554be 100644 --- a/docs/discussions/knowledge-base/647.mdx +++ b/docs/discussions/knowledge-base/647.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/649.mdx b/docs/discussions/knowledge-base/649.mdx index d8db5ca5f3..cde4cef135 100644 --- a/docs/discussions/knowledge-base/649.mdx +++ b/docs/discussions/knowledge-base/649.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/650.mdx b/docs/discussions/knowledge-base/650.mdx index 820db0880c..e1b0d96b5c 100644 --- a/docs/discussions/knowledge-base/650.mdx +++ b/docs/discussions/knowledge-base/650.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/651.mdx b/docs/discussions/knowledge-base/651.mdx index f9b66b5df6..274228528a 100644 --- a/docs/discussions/knowledge-base/651.mdx +++ b/docs/discussions/knowledge-base/651.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/652.mdx b/docs/discussions/knowledge-base/652.mdx index 6a69da32f7..7f58bf8258 100644 --- a/docs/discussions/knowledge-base/652.mdx +++ b/docs/discussions/knowledge-base/652.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/653.mdx b/docs/discussions/knowledge-base/653.mdx index 096224e256..fada897b48 100644 --- a/docs/discussions/knowledge-base/653.mdx +++ b/docs/discussions/knowledge-base/653.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/655.mdx b/docs/discussions/knowledge-base/655.mdx index f2801b62b1..553c368766 100644 --- a/docs/discussions/knowledge-base/655.mdx +++ b/docs/discussions/knowledge-base/655.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/657.mdx b/docs/discussions/knowledge-base/657.mdx index b9881e3eff..a2a87af364 100644 --- a/docs/discussions/knowledge-base/657.mdx +++ b/docs/discussions/knowledge-base/657.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/659.mdx b/docs/discussions/knowledge-base/659.mdx index 3e9bf97725..6dabffea80 100644 --- a/docs/discussions/knowledge-base/659.mdx +++ b/docs/discussions/knowledge-base/659.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/66.mdx b/docs/discussions/knowledge-base/66.mdx index 4976b5a130..e503d5140f 100644 --- a/docs/discussions/knowledge-base/66.mdx +++ b/docs/discussions/knowledge-base/66.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/661.mdx b/docs/discussions/knowledge-base/661.mdx index 0ef3dd34f3..41b28078d8 100644 --- a/docs/discussions/knowledge-base/661.mdx +++ b/docs/discussions/knowledge-base/661.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/662.mdx b/docs/discussions/knowledge-base/662.mdx index 03439c4b41..af7a78f367 100644 --- a/docs/discussions/knowledge-base/662.mdx +++ b/docs/discussions/knowledge-base/662.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/664.mdx b/docs/discussions/knowledge-base/664.mdx index 72ee3172dc..ffd95e450e 100644 --- a/docs/discussions/knowledge-base/664.mdx +++ b/docs/discussions/knowledge-base/664.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/666.mdx b/docs/discussions/knowledge-base/666.mdx index 5b6614fe1d..91631b5459 100644 --- a/docs/discussions/knowledge-base/666.mdx +++ b/docs/discussions/knowledge-base/666.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/669.mdx b/docs/discussions/knowledge-base/669.mdx index 9d2d6ae488..0059e55517 100644 --- a/docs/discussions/knowledge-base/669.mdx +++ b/docs/discussions/knowledge-base/669.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/67.mdx b/docs/discussions/knowledge-base/67.mdx index 4d59551221..c6a38a2720 100644 --- a/docs/discussions/knowledge-base/67.mdx +++ b/docs/discussions/knowledge-base/67.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/670.mdx b/docs/discussions/knowledge-base/670.mdx index 5368dd4239..ab9d0bc4f3 100644 --- a/docs/discussions/knowledge-base/670.mdx +++ b/docs/discussions/knowledge-base/670.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/673.mdx b/docs/discussions/knowledge-base/673.mdx index b5202cec21..bb4eda61ac 100644 --- a/docs/discussions/knowledge-base/673.mdx +++ b/docs/discussions/knowledge-base/673.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/674.mdx b/docs/discussions/knowledge-base/674.mdx index 701e21efdb..fc44432a52 100644 --- a/docs/discussions/knowledge-base/674.mdx +++ b/docs/discussions/knowledge-base/674.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/675.mdx b/docs/discussions/knowledge-base/675.mdx index 21ebd0066a..1bfa20b898 100644 --- a/docs/discussions/knowledge-base/675.mdx +++ b/docs/discussions/knowledge-base/675.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/676.mdx b/docs/discussions/knowledge-base/676.mdx index 18965092fa..525afdffe9 100644 --- a/docs/discussions/knowledge-base/676.mdx +++ b/docs/discussions/knowledge-base/676.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/678.mdx b/docs/discussions/knowledge-base/678.mdx index 569404b909..6ada6d7215 100644 --- a/docs/discussions/knowledge-base/678.mdx +++ b/docs/discussions/knowledge-base/678.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/679.mdx b/docs/discussions/knowledge-base/679.mdx index bd117d8cc4..bb1fc03bf9 100644 --- a/docs/discussions/knowledge-base/679.mdx +++ b/docs/discussions/knowledge-base/679.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/68.mdx b/docs/discussions/knowledge-base/68.mdx index 16eb7cab27..3cf3c2068e 100644 --- a/docs/discussions/knowledge-base/68.mdx +++ b/docs/discussions/knowledge-base/68.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/681.mdx b/docs/discussions/knowledge-base/681.mdx index 62c00f2a6c..ff9c0b4880 100644 --- a/docs/discussions/knowledge-base/681.mdx +++ b/docs/discussions/knowledge-base/681.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/682.mdx b/docs/discussions/knowledge-base/682.mdx index 278025324e..0c7a224df6 100644 --- a/docs/discussions/knowledge-base/682.mdx +++ b/docs/discussions/knowledge-base/682.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/684.mdx b/docs/discussions/knowledge-base/684.mdx index 9ea50f0f6d..c9e0bcf9e4 100644 --- a/docs/discussions/knowledge-base/684.mdx +++ b/docs/discussions/knowledge-base/684.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/685.mdx b/docs/discussions/knowledge-base/685.mdx index 012df151ac..92ee727a10 100644 --- a/docs/discussions/knowledge-base/685.mdx +++ b/docs/discussions/knowledge-base/685.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/686.mdx b/docs/discussions/knowledge-base/686.mdx index 218e928be0..94336d6ab4 100644 --- a/docs/discussions/knowledge-base/686.mdx +++ b/docs/discussions/knowledge-base/686.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/687.mdx b/docs/discussions/knowledge-base/687.mdx index 73db27f0ba..db35a33b8c 100644 --- a/docs/discussions/knowledge-base/687.mdx +++ b/docs/discussions/knowledge-base/687.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/69.mdx b/docs/discussions/knowledge-base/69.mdx index 44999c80c2..2b13b8dd81 100644 --- a/docs/discussions/knowledge-base/69.mdx +++ b/docs/discussions/knowledge-base/69.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/690.mdx b/docs/discussions/knowledge-base/690.mdx index 314067d101..c060733c2c 100644 --- a/docs/discussions/knowledge-base/690.mdx +++ b/docs/discussions/knowledge-base/690.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/691.mdx b/docs/discussions/knowledge-base/691.mdx index d8ea22c230..44b9885b7f 100644 --- a/docs/discussions/knowledge-base/691.mdx +++ b/docs/discussions/knowledge-base/691.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/696.mdx b/docs/discussions/knowledge-base/696.mdx index 85e118b634..158f1fc60b 100644 --- a/docs/discussions/knowledge-base/696.mdx +++ b/docs/discussions/knowledge-base/696.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/697.mdx b/docs/discussions/knowledge-base/697.mdx index 216e912871..7b4636520c 100644 --- a/docs/discussions/knowledge-base/697.mdx +++ b/docs/discussions/knowledge-base/697.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/698.mdx b/docs/discussions/knowledge-base/698.mdx index 60981617e3..43e1d578bb 100644 --- a/docs/discussions/knowledge-base/698.mdx +++ b/docs/discussions/knowledge-base/698.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/699.mdx b/docs/discussions/knowledge-base/699.mdx index 52187b5f80..cc7290131f 100644 --- a/docs/discussions/knowledge-base/699.mdx +++ b/docs/discussions/knowledge-base/699.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/700.mdx b/docs/discussions/knowledge-base/700.mdx index c62a55bf43..b89715b94a 100644 --- a/docs/discussions/knowledge-base/700.mdx +++ b/docs/discussions/knowledge-base/700.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/704.mdx b/docs/discussions/knowledge-base/704.mdx index 20ba4e649a..0efb833585 100644 --- a/docs/discussions/knowledge-base/704.mdx +++ b/docs/discussions/knowledge-base/704.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/708.mdx b/docs/discussions/knowledge-base/708.mdx index 901af37d0f..67908859e0 100644 --- a/docs/discussions/knowledge-base/708.mdx +++ b/docs/discussions/knowledge-base/708.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/709.mdx b/docs/discussions/knowledge-base/709.mdx index 8c406d27c6..8c81c7c0c0 100644 --- a/docs/discussions/knowledge-base/709.mdx +++ b/docs/discussions/knowledge-base/709.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/71.mdx b/docs/discussions/knowledge-base/71.mdx index 56e2719bb6..c91e366a33 100644 --- a/docs/discussions/knowledge-base/71.mdx +++ b/docs/discussions/knowledge-base/71.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/713.mdx b/docs/discussions/knowledge-base/713.mdx index 12726e5141..283ecb1d44 100644 --- a/docs/discussions/knowledge-base/713.mdx +++ b/docs/discussions/knowledge-base/713.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/714.mdx b/docs/discussions/knowledge-base/714.mdx index e3660014bd..9467a85cd6 100644 --- a/docs/discussions/knowledge-base/714.mdx +++ b/docs/discussions/knowledge-base/714.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/715.mdx b/docs/discussions/knowledge-base/715.mdx index d6f927df70..bcfbd2256a 100644 --- a/docs/discussions/knowledge-base/715.mdx +++ b/docs/discussions/knowledge-base/715.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/716.mdx b/docs/discussions/knowledge-base/716.mdx index ae7822ec83..55c66e3840 100644 --- a/docs/discussions/knowledge-base/716.mdx +++ b/docs/discussions/knowledge-base/716.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/717.mdx b/docs/discussions/knowledge-base/717.mdx index 2bbd5919f4..cbe4e088b9 100644 --- a/docs/discussions/knowledge-base/717.mdx +++ b/docs/discussions/knowledge-base/717.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/718.mdx b/docs/discussions/knowledge-base/718.mdx index 2e95c6a420..e59868d13c 100644 --- a/docs/discussions/knowledge-base/718.mdx +++ b/docs/discussions/knowledge-base/718.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/72.mdx b/docs/discussions/knowledge-base/72.mdx index 2b78909ae1..b26ba897f5 100644 --- a/docs/discussions/knowledge-base/72.mdx +++ b/docs/discussions/knowledge-base/72.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/722.mdx b/docs/discussions/knowledge-base/722.mdx index aebbb5ab0e..15fca0e54f 100644 --- a/docs/discussions/knowledge-base/722.mdx +++ b/docs/discussions/knowledge-base/722.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/724.mdx b/docs/discussions/knowledge-base/724.mdx index 0a7d5fafcd..9a18713523 100644 --- a/docs/discussions/knowledge-base/724.mdx +++ b/docs/discussions/knowledge-base/724.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/728.mdx b/docs/discussions/knowledge-base/728.mdx index 566541b18d..255f0ea1ca 100644 --- a/docs/discussions/knowledge-base/728.mdx +++ b/docs/discussions/knowledge-base/728.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/729.mdx b/docs/discussions/knowledge-base/729.mdx index 128750aded..100bea904e 100644 --- a/docs/discussions/knowledge-base/729.mdx +++ b/docs/discussions/knowledge-base/729.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/731.mdx b/docs/discussions/knowledge-base/731.mdx index 35ac93cf59..ca693d02f8 100644 --- a/docs/discussions/knowledge-base/731.mdx +++ b/docs/discussions/knowledge-base/731.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/732.mdx b/docs/discussions/knowledge-base/732.mdx index 8559c02111..cd70c4d3f1 100644 --- a/docs/discussions/knowledge-base/732.mdx +++ b/docs/discussions/knowledge-base/732.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/734.mdx b/docs/discussions/knowledge-base/734.mdx index 4735c5b029..d0f8e9ae93 100644 --- a/docs/discussions/knowledge-base/734.mdx +++ b/docs/discussions/knowledge-base/734.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/735.mdx b/docs/discussions/knowledge-base/735.mdx index 25654033bd..51c0e52014 100644 --- a/docs/discussions/knowledge-base/735.mdx +++ b/docs/discussions/knowledge-base/735.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/737.mdx b/docs/discussions/knowledge-base/737.mdx index f957df352c..2b9d1dc817 100644 --- a/docs/discussions/knowledge-base/737.mdx +++ b/docs/discussions/knowledge-base/737.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/738.mdx b/docs/discussions/knowledge-base/738.mdx index feb37fa514..2157b88848 100644 --- a/docs/discussions/knowledge-base/738.mdx +++ b/docs/discussions/knowledge-base/738.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/739.mdx b/docs/discussions/knowledge-base/739.mdx index 1d11077dc3..f1d9a3616b 100644 --- a/docs/discussions/knowledge-base/739.mdx +++ b/docs/discussions/knowledge-base/739.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/741.mdx b/docs/discussions/knowledge-base/741.mdx index 4d0ad9260d..b64f7e4e72 100644 --- a/docs/discussions/knowledge-base/741.mdx +++ b/docs/discussions/knowledge-base/741.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/742.mdx b/docs/discussions/knowledge-base/742.mdx index dc4d3c8c0f..9170e7cf15 100644 --- a/docs/discussions/knowledge-base/742.mdx +++ b/docs/discussions/knowledge-base/742.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/743.mdx b/docs/discussions/knowledge-base/743.mdx index bccf23d1c7..54ca6c8970 100644 --- a/docs/discussions/knowledge-base/743.mdx +++ b/docs/discussions/knowledge-base/743.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/744.mdx b/docs/discussions/knowledge-base/744.mdx index bd249b38a2..88f4253724 100644 --- a/docs/discussions/knowledge-base/744.mdx +++ b/docs/discussions/knowledge-base/744.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/745.mdx b/docs/discussions/knowledge-base/745.mdx index 3972f0f90d..ce1c5b46c7 100644 --- a/docs/discussions/knowledge-base/745.mdx +++ b/docs/discussions/knowledge-base/745.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/748.mdx b/docs/discussions/knowledge-base/748.mdx index a20930b46b..bf898aa71d 100644 --- a/docs/discussions/knowledge-base/748.mdx +++ b/docs/discussions/knowledge-base/748.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/75.mdx b/docs/discussions/knowledge-base/75.mdx index 7d91d8a271..1ad914ed41 100644 --- a/docs/discussions/knowledge-base/75.mdx +++ b/docs/discussions/knowledge-base/75.mdx @@ -19,9 +19,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/750.mdx b/docs/discussions/knowledge-base/750.mdx index 2614a2f3ff..c96ffccac2 100644 --- a/docs/discussions/knowledge-base/750.mdx +++ b/docs/discussions/knowledge-base/750.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/757.mdx b/docs/discussions/knowledge-base/757.mdx index 7906be0c57..b1616c5c1e 100644 --- a/docs/discussions/knowledge-base/757.mdx +++ b/docs/discussions/knowledge-base/757.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/758.mdx b/docs/discussions/knowledge-base/758.mdx index f1daca2330..72976becda 100644 --- a/docs/discussions/knowledge-base/758.mdx +++ b/docs/discussions/knowledge-base/758.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/759.mdx b/docs/discussions/knowledge-base/759.mdx index e15966f866..3b0c971bde 100644 --- a/docs/discussions/knowledge-base/759.mdx +++ b/docs/discussions/knowledge-base/759.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/76.mdx b/docs/discussions/knowledge-base/76.mdx index 2b4708826d..8415ac06b5 100644 --- a/docs/discussions/knowledge-base/76.mdx +++ b/docs/discussions/knowledge-base/76.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/764.mdx b/docs/discussions/knowledge-base/764.mdx index 8d69cc19ce..e04ce8b60b 100644 --- a/docs/discussions/knowledge-base/764.mdx +++ b/docs/discussions/knowledge-base/764.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/765.mdx b/docs/discussions/knowledge-base/765.mdx index 125f5e7e41..f4b1c5e57a 100644 --- a/docs/discussions/knowledge-base/765.mdx +++ b/docs/discussions/knowledge-base/765.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/767.mdx b/docs/discussions/knowledge-base/767.mdx index b86ad1d49d..2318154de2 100644 --- a/docs/discussions/knowledge-base/767.mdx +++ b/docs/discussions/knowledge-base/767.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/769.mdx b/docs/discussions/knowledge-base/769.mdx index d7efd26fcd..265ef86fd2 100644 --- a/docs/discussions/knowledge-base/769.mdx +++ b/docs/discussions/knowledge-base/769.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/77.mdx b/docs/discussions/knowledge-base/77.mdx index 50a02d1dd5..bcb62bbc73 100644 --- a/docs/discussions/knowledge-base/77.mdx +++ b/docs/discussions/knowledge-base/77.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/770.mdx b/docs/discussions/knowledge-base/770.mdx index 855cc41362..cc3568e53f 100644 --- a/docs/discussions/knowledge-base/770.mdx +++ b/docs/discussions/knowledge-base/770.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/777.mdx b/docs/discussions/knowledge-base/777.mdx index 5b876a7236..d58095d95e 100644 --- a/docs/discussions/knowledge-base/777.mdx +++ b/docs/discussions/knowledge-base/777.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/78.mdx b/docs/discussions/knowledge-base/78.mdx index 76b5888fe6..60c0b058b8 100644 --- a/docs/discussions/knowledge-base/78.mdx +++ b/docs/discussions/knowledge-base/78.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/781.mdx b/docs/discussions/knowledge-base/781.mdx index e48d3ae601..214535f21c 100644 --- a/docs/discussions/knowledge-base/781.mdx +++ b/docs/discussions/knowledge-base/781.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/783.mdx b/docs/discussions/knowledge-base/783.mdx index 37007c0f93..fb72b324fe 100644 --- a/docs/discussions/knowledge-base/783.mdx +++ b/docs/discussions/knowledge-base/783.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/784.mdx b/docs/discussions/knowledge-base/784.mdx index 6fdd2db264..a932020adb 100644 --- a/docs/discussions/knowledge-base/784.mdx +++ b/docs/discussions/knowledge-base/784.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/788.mdx b/docs/discussions/knowledge-base/788.mdx index b3237fd86e..cb34e4e740 100644 --- a/docs/discussions/knowledge-base/788.mdx +++ b/docs/discussions/knowledge-base/788.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/789.mdx b/docs/discussions/knowledge-base/789.mdx index 35be3e809a..3b71103da6 100644 --- a/docs/discussions/knowledge-base/789.mdx +++ b/docs/discussions/knowledge-base/789.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/797.mdx b/docs/discussions/knowledge-base/797.mdx index 566cb8377d..27038a7cae 100644 --- a/docs/discussions/knowledge-base/797.mdx +++ b/docs/discussions/knowledge-base/797.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/799.mdx b/docs/discussions/knowledge-base/799.mdx index 37e69fecbd..57d2c6a758 100644 --- a/docs/discussions/knowledge-base/799.mdx +++ b/docs/discussions/knowledge-base/799.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/8.mdx b/docs/discussions/knowledge-base/8.mdx index 1c3237779c..085ce09977 100644 --- a/docs/discussions/knowledge-base/8.mdx +++ b/docs/discussions/knowledge-base/8.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/800.mdx b/docs/discussions/knowledge-base/800.mdx index 324cf0ecfb..0f0c649c03 100644 --- a/docs/discussions/knowledge-base/800.mdx +++ b/docs/discussions/knowledge-base/800.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/801.mdx b/docs/discussions/knowledge-base/801.mdx index 8f5cdac668..3217915950 100644 --- a/docs/discussions/knowledge-base/801.mdx +++ b/docs/discussions/knowledge-base/801.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/803.mdx b/docs/discussions/knowledge-base/803.mdx index 364b1cc39b..b065c86505 100644 --- a/docs/discussions/knowledge-base/803.mdx +++ b/docs/discussions/knowledge-base/803.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/806.mdx b/docs/discussions/knowledge-base/806.mdx index 5a5a19233a..a7d078dac9 100644 --- a/docs/discussions/knowledge-base/806.mdx +++ b/docs/discussions/knowledge-base/806.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/807.mdx b/docs/discussions/knowledge-base/807.mdx index 067f90ddcc..5c9be538e1 100644 --- a/docs/discussions/knowledge-base/807.mdx +++ b/docs/discussions/knowledge-base/807.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/808.mdx b/docs/discussions/knowledge-base/808.mdx index fa2d9e1f56..6e3b1b5c93 100644 --- a/docs/discussions/knowledge-base/808.mdx +++ b/docs/discussions/knowledge-base/808.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/810.mdx b/docs/discussions/knowledge-base/810.mdx index 6fdd2b6850..4dbd714a3c 100644 --- a/docs/discussions/knowledge-base/810.mdx +++ b/docs/discussions/knowledge-base/810.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/811.mdx b/docs/discussions/knowledge-base/811.mdx index 629c61272f..1bc1587887 100644 --- a/docs/discussions/knowledge-base/811.mdx +++ b/docs/discussions/knowledge-base/811.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/816.mdx b/docs/discussions/knowledge-base/816.mdx index f00f1db477..4b15173b20 100644 --- a/docs/discussions/knowledge-base/816.mdx +++ b/docs/discussions/knowledge-base/816.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/821.mdx b/docs/discussions/knowledge-base/821.mdx index 786cdd979c..a9089e67e9 100644 --- a/docs/discussions/knowledge-base/821.mdx +++ b/docs/discussions/knowledge-base/821.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/836.mdx b/docs/discussions/knowledge-base/836.mdx index b513bc9703..472d038525 100644 --- a/docs/discussions/knowledge-base/836.mdx +++ b/docs/discussions/knowledge-base/836.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/841.mdx b/docs/discussions/knowledge-base/841.mdx index 2cba8590f9..64d791d4dd 100644 --- a/docs/discussions/knowledge-base/841.mdx +++ b/docs/discussions/knowledge-base/841.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/845.mdx b/docs/discussions/knowledge-base/845.mdx index d731e8f379..9d27a508f3 100644 --- a/docs/discussions/knowledge-base/845.mdx +++ b/docs/discussions/knowledge-base/845.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/846.mdx b/docs/discussions/knowledge-base/846.mdx index 4237c14c06..073c99f96f 100644 --- a/docs/discussions/knowledge-base/846.mdx +++ b/docs/discussions/knowledge-base/846.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/92.mdx b/docs/discussions/knowledge-base/92.mdx index aa8be350d1..302710fc92 100644 --- a/docs/discussions/knowledge-base/92.mdx +++ b/docs/discussions/knowledge-base/92.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/95.mdx b/docs/discussions/knowledge-base/95.mdx index 96f92abb01..cd74f8c8d0 100644 --- a/docs/discussions/knowledge-base/95.mdx +++ b/docs/discussions/knowledge-base/95.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/96.mdx b/docs/discussions/knowledge-base/96.mdx index 0478ebf68c..8a2fe35f8c 100644 --- a/docs/discussions/knowledge-base/96.mdx +++ b/docs/discussions/knowledge-base/96.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/97.mdx b/docs/discussions/knowledge-base/97.mdx index 66ce91e5da..338aaebf19 100644 --- a/docs/discussions/knowledge-base/97.mdx +++ b/docs/discussions/knowledge-base/97.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/98.mdx b/docs/discussions/knowledge-base/98.mdx index f0593cf8fd..dabacebab7 100644 --- a/docs/discussions/knowledge-base/98.mdx +++ b/docs/discussions/knowledge-base/98.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/discussions/knowledge-base/99.mdx b/docs/discussions/knowledge-base/99.mdx index 99a98d5376..d35abf5340 100644 --- a/docs/discussions/knowledge-base/99.mdx +++ b/docs/discussions/knowledge-base/99.mdx @@ -18,9 +18,11 @@ import GitHub from "/src/components/GitHub" +{/* +*/} diff --git a/docs/ecs-deploy-runner/how-it-works/index.md b/docs/ecs-deploy-runner/how-it-works/index.md index 6a332bbc31..76f982b05e 100644 --- a/docs/ecs-deploy-runner/how-it-works/index.md +++ b/docs/ecs-deploy-runner/how-it-works/index.md @@ -1,6 +1,6 @@ # How it works -:::info Newer Version Available +:::info[Newer Version Available] This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. ::: @@ -84,9 +84,11 @@ plan and apply Terraform and Terragrunt code. These tasks run in the same [Docke as the AMI builder. +{/* +*/} diff --git a/docs/ecs-deploy-runner/maintain/extending.md b/docs/ecs-deploy-runner/maintain/extending.md index 8ca9c7449c..d3be0060b4 100644 --- a/docs/ecs-deploy-runner/maintain/extending.md +++ b/docs/ecs-deploy-runner/maintain/extending.md @@ -3,8 +3,8 @@ import TabItem from '@theme/TabItem'; # Extending your ECS Deploy Runner -:::info Newer Version Available -This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. +:::info[Newer Version Available] +This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](/pipelines/overview/) to view documentation for the most recent version. ::: Pipelines can be extended in several ways: @@ -126,7 +126,7 @@ aws-vault exec -- terragrunt apply --terragrunt-source-update -auto- If you’ve deployed Pipelines as a standalone framework using the `ecs-deploy-runner` service in the Service Catalog, you will need to locate the file in which you’ve defined a module block sourcing the `ecs-deploy-runner` service. -Modify the AWS IAM policy document being passed into the `iam_policy` variable for the [`terraform_applier_config`](/reference/services/ci-cd-pipeline/ecs-deploy-runner#terraform_applier_config) and the [`terraform_planner_config`](../../reference/services/ci-cd-pipeline/ecs-deploy-runner#terraform_planner_config) variables. Refer to the [variable reference](/reference/services/ci-cd-pipeline/ecs-deploy-runner#reference) section for the service in the Library Reference for the full set of configuration details for this service. +Modify the AWS IAM policy document being passed into the `iam_policy` variable for the [`terraform_applier_config`](/reference/services/ci-cd-pipeline/ecs-deploy-runner#terraform_applier_config) and the [`terraform_planner_config`](/reference/services/ci-cd-pipeline/ecs-deploy-runner#terraform_planner_config) variables. Refer to the [variable reference](/reference/services/ci-cd-pipeline/ecs-deploy-runner#reference) section for the service in the Library Reference for the full set of configuration details for this service. After you are done updating the IAM policy documents, run `terraform plan` then review the changes that will be made. Finally, run `terraform apply` to apply the changes. @@ -141,9 +141,11 @@ By default, the `deploy-runner` ships with three scripts — one to build HashiC If you need to run a custom script in the `deploy-runner`, you must fork the image code, add an additional line to copy your script into directory designated by the `trigger_directory` argument. Then, you will need to rebuild the Docker image, push to ECR, then update your Pipelines deployment following the steps in [Updating your Pipeline](/ecs-deploy-runner/maintain/updating.md). +{/* +*/} diff --git a/docs/ecs-deploy-runner/maintain/updating.md b/docs/ecs-deploy-runner/maintain/updating.md index f9f21faee1..ac9397a325 100644 --- a/docs/ecs-deploy-runner/maintain/updating.md +++ b/docs/ecs-deploy-runner/maintain/updating.md @@ -3,11 +3,11 @@ import TabItem from '@theme/TabItem'; # Updating Your ECS Deploy Runner -:::info Newer Version Available -This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. +:::info[Newer Version Available] +This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](/pipelines/overview/) to view documentation for the most recent version. ::: -Pipelines is built using the [`terraform-aws-ci`](../../reference/modules/terraform-aws-ci/ecs-deploy-runner/) module. We recommend updating your pipeline whenever there’s a new release of the module. +Pipelines is built using the [`terraform-aws-ci`](/reference/modules/terraform-aws-ci/ecs-deploy-runner/) module. We recommend updating your pipeline whenever there’s a new release of the module. By default, Pipelines cannot update it’s own infrastructure (ECS cluster, AWS Lambda function, etc), so you must run upgrades to Pipelines manually from your local machine. This safeguard is in place to prevent you from accidentally locking yourself out of the Pipeline when applying a change to permissions. @@ -92,7 +92,7 @@ aws-vault exec your-prod -- terragrunt apply --terragrunt-source-update -auto-ap -If you’ve deployed Pipelines as a standalone framework using the `ecs-deploy-runner` service in the Service Catalog, refer to the [Variable Reference](../../reference/services/ci-cd-pipeline/ecs-deploy-runner#reference) section for the service in the Library Reference for configuration details. You will need to update the `docker_tag` value in the `container_image` object for the [`ami_builder_config`](../../reference/services/ci-cd-pipeline/ecs-deploy-runner#ami_builder_config), [`docker_image_builder_config`](../../reference/services/ci-cd-pipeline/ecs-deploy-runner#docker_image_builder_config), [`terraform_applier_config`](../../reference/services/ci-cd-pipeline/ecs-deploy-runner#terraform_applier_config), and [`terraform_planner_config`](../../reference/services/ci-cd-pipeline/ecs-deploy-runner#terraform_planner_config) variables. +If you’ve deployed Pipelines as a standalone framework using the `ecs-deploy-runner` service in the Service Catalog, refer to the [Variable Reference](/reference/services/ci-cd-pipeline/ecs-deploy-runner#reference) section for the service in the Library Reference for configuration details. You will need to update the `docker_tag` value in the `container_image` object for the [`ami_builder_config`](/reference/services/ci-cd-pipeline/ecs-deploy-runner#ami_builder_config), [`docker_image_builder_config`](/reference/services/ci-cd-pipeline/ecs-deploy-runner#docker_image_builder_config), [`terraform_applier_config`](/reference/services/ci-cd-pipeline/ecs-deploy-runner#terraform_applier_config), and [`terraform_planner_config`](/reference/services/ci-cd-pipeline/ecs-deploy-runner#terraform_planner_config) variables. Once you have updated any references to the container image tags, you will need to run `terraform plan` and `terraform apply` in each account where pipelines is deployed. @@ -100,9 +100,11 @@ Once you have updated any references to the container image tags, you will need +{/* +*/} diff --git a/docs/ecs-deploy-runner/multi-account/index.md b/docs/ecs-deploy-runner/multi-account/index.md index 7e84e609ef..c7402994b1 100644 --- a/docs/ecs-deploy-runner/multi-account/index.md +++ b/docs/ecs-deploy-runner/multi-account/index.md @@ -1,6 +1,6 @@ # Deploying Multi-Account Pipelines -:::info Newer Version Available +:::info[Newer Version Available] This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. ::: @@ -17,9 +17,11 @@ It's important to keep all your accounts organized and working together smoothly But if you can manage your pack of dogs successfully, they can work together to accomplish great things - just like how an AWS multi-account setup can help you achieve your goals with ease and efficiency. So, if you're a dog lover like me, you'll find that AWS multi-account setups are just as fun and rewarding as having a pack of loyal furry friends by your side. Woof! +{/* +*/} diff --git a/docs/ecs-deploy-runner/overview/index.md b/docs/ecs-deploy-runner/overview/index.md index c091a43be0..fc1e5da2e5 100644 --- a/docs/ecs-deploy-runner/overview/index.md +++ b/docs/ecs-deploy-runner/overview/index.md @@ -1,6 +1,6 @@ # ECS Deploy Runner -:::info Newer Version Available +:::info[Newer Version Available] This documentation pertains to an old version of Gruntwork Pipelines which used the ECS Deploy Runner. [Click here](../../pipelines/overview/) to view documentation for the most recent version. ::: @@ -17,9 +17,11 @@ infrastructure related permissions reside safely within your own AWS account. Th high value AWS secrets. +{/* +*/} diff --git a/docs/ecs-deploy-runner/tutorial/index.md b/docs/ecs-deploy-runner/tutorial/index.md index 8e9e7fe4aa..dc08f1d914 100644 --- a/docs/ecs-deploy-runner/tutorial/index.md +++ b/docs/ecs-deploy-runner/tutorial/index.md @@ -355,9 +355,11 @@ terraform apply terraform.plan ``` +{/* +*/} diff --git a/docs/foundations/maintenance/index.md b/docs/foundations/maintenance/index.md index c1c9fae8a9..e9f20f2a4f 100644 --- a/docs/foundations/maintenance/index.md +++ b/docs/foundations/maintenance/index.md @@ -1,9 +1,11 @@ # Maintenance Foundations Placeholder +{/* +*/} diff --git a/docs/foundations/overview/setup-order.md b/docs/foundations/overview/setup-order.md index 9739489adf..818e3fd7c7 100644 --- a/docs/foundations/overview/setup-order.md +++ b/docs/foundations/overview/setup-order.md @@ -46,9 +46,11 @@ Once the layer-1 components are in place, the following components can be added: In general, when you build new infrastructure, you first need your AWS accounts and their account baselines, a network topology, your IaC foundational patterns, and a Pipeline to deploy everything. Once those infrastructure foundations are in place, you are ready to add apps, data pipelines, and more. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/core-concepts/intro.md b/docs/guides/build-it-yourself/achieve-compliance/core-concepts/intro.md index d5c26e2d17..dcae1819a1 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/core-concepts/intro.md +++ b/docs/guides/build-it-yourself/achieve-compliance/core-concepts/intro.md @@ -50,9 +50,11 @@ reach the bar set by the CIS Controls. Refer to the Benchmark document directly controls. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/core-concepts/recommendation-sections.md b/docs/guides/build-it-yourself/achieve-compliance/core-concepts/recommendation-sections.md index ccbada23ab..6a802da093 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/core-concepts/recommendation-sections.md +++ b/docs/guides/build-it-yourself/achieve-compliance/core-concepts/recommendation-sections.md @@ -57,9 +57,11 @@ distributed system. The recommendations merely limit traffic from the zero netwo suggest limiting routing for VPC peering connections based on [the principle of least-privilege](https://en.wikipedia.org/wiki/Principle_of_least_privilege). +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/create-an-iam-user-in-the-root-account.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/create-an-iam-user-in-the-root-account.md index ee493a2598..df7a24cfbe 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/create-an-iam-user-in-the-root-account.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/create-an-iam-user-in-the-root-account.md @@ -13,9 +13,11 @@ IAM user manually by - In a secrets manager, save the IAM sign-in URL, your IAM user’s username, the password, and your Access Keys. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/create-the-root-account.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/create-the-root-account.md index 95b5c7be41..1e3df7d32d 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/create-the-root-account.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/create-the-root-account.md @@ -8,9 +8,11 @@ The first step is to create your root account. This account will be the parent o - You will be asked to enter an email address and password to use as the credentials for the root user of this root account. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/create-vpc-flow-logs.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/create-vpc-flow-logs.md index 6bd22ca098..e6a992fe68 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/create-vpc-flow-logs.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/create-vpc-flow-logs.md @@ -154,9 +154,11 @@ Finally, run the [`cloud-nuke defaults-aws`](https://github.com/gruntwork-io/clo default security groups from all VPCs in all regions. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-app-to-logs-account.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-app-to-logs-account.md index 7f5b27ba1b..39c817d868 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-app-to-logs-account.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-app-to-logs-account.md @@ -270,9 +270,11 @@ On some operating systems, such as MacOS, you may also need to increase your ope ::: +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-app-to-other-child-accounts.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-app-to-other-child-accounts.md index 51f15cac88..371e234d07 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-app-to-other-child-accounts.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-app-to-other-child-accounts.md @@ -308,9 +308,11 @@ compliance; it is a failure of the AWS audit tool. Note also that the accounts a the benchmark, v1.3.0; the AWS Security Hub does not support this version at the current time. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-root-to-root-account.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-root-to-root-account.md index da62c7439a..1dd8481a15 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-root-to-root-account.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-root-to-root-account.md @@ -584,9 +584,11 @@ for each of those child accounts—including enabling MFA and deleting the root those root users again. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-security-to-security-account.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-security-to-security-account.md index 954e593c9b..0db471cf62 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-security-to-security-account.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/apply-account-baseline-security-to-security-account.md @@ -329,9 +329,11 @@ echo "" | base64 --decode | keybase pgp decrypt ``` +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/enable-key-rotation-for-kms-keys.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/enable-key-rotation-for-kms-keys.md index 02852175b7..c61a0b559b 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/enable-key-rotation-for-kms-keys.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/enable-key-rotation-for-kms-keys.md @@ -5,9 +5,11 @@ To make sure your KMS keys are compliant with the benchmark, use the to create KMS keys with key rotation enabled by default. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/maintain-compliance-by-following-iam-best-practices.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/maintain-compliance-by-following-iam-best-practices.md index 54d881b7d9..b45219e845 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/maintain-compliance-by-following-iam-best-practices.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/maintain-compliance-by-following-iam-best-practices.md @@ -18,9 +18,11 @@ We conclude the IAM section with a few parting words of wisdom for maintaining c a minimum. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/maintain-compliance-by-following-logging-best-practices.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/maintain-compliance-by-following-logging-best-practices.md index f1a08cd386..39c3693ac6 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/maintain-compliance-by-following-logging-best-practices.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/maintain-compliance-by-following-logging-best-practices.md @@ -3,9 +3,11 @@ The logging section of the Benchmark includes configurations for CloudTrail, AWS Config, KMS keys, and VPC flow logs. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/maintain-compliance-by-following-storage-best-practices.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/maintain-compliance-by-following-storage-best-practices.md index 0d981ecd3f..a52874d556 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/maintain-compliance-by-following-storage-best-practices.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/maintain-compliance-by-following-storage-best-practices.md @@ -17,9 +17,11 @@ to monitor all your S3 buckets. Note that all the Gruntwork account baseline mod the hood. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/use-iam-roles-for-ec2-instances.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/use-iam-roles-for-ec2-instances.md index b28640257f..269290607d 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/use-iam-roles-for-ec2-instances.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deploy-landing-zone-solution/use-iam-roles-for-ec2-instances.md @@ -22,9 +22,11 @@ Use these modules whenever possible. You should always use IAM roles in your own access to the AWS API. Using static API credentials should be avoided whenever possible. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deployment-approach.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deployment-approach.md index 63b3d69768..19697a74fb 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deployment-approach.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/deployment-approach.md @@ -8,9 +8,11 @@ The Landing Zone will be deployed in three steps - the `account-baseline-root` t The standalone modules will follow the pattern of referencing the module and providing the necessary input variables for it, then applying with `terragrunt`. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/lock-down-the-root-account-iam-users.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/lock-down-the-root-account-iam-users.md index b66c6f9495..5ba2c16c0f 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/lock-down-the-root-account-iam-users.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/lock-down-the-root-account-iam-users.md @@ -31,9 +31,11 @@ so using a virtual or hardware MFA device is preferable; that said, MFA with SMS +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/lock-down-the-root-user.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/lock-down-the-root-user.md index 5a5f094452..72715e3f05 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/lock-down-the-root-user.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/lock-down-the-root-user.md @@ -61,9 +61,11 @@ your credentials) or for the +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/manual-steps.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/manual-steps.md index 16423ba075..9626ba1cb7 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/manual-steps.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/manual-steps.md @@ -154,9 +154,11 @@ Example: ``` +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/pre-requisites.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/pre-requisites.md index cde482d776..c7856be71d 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/pre-requisites.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/pre-requisites.md @@ -52,9 +52,11 @@ create PGP keys for themselves, and then you can provide their Keybase usernames automatically. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/prepare-your-infrastructure-live-repository.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/prepare-your-infrastructure-live-repository.md index 350b94ad5e..486a3e0635 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/prepare-your-infrastructure-live-repository.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/prepare-your-infrastructure-live-repository.md @@ -4,7 +4,7 @@ sidebar_label: Prepare your infrastructure-live repository # Prepare your infrastructure-live repository -:::info Terragrunt not required +:::info[Terragrunt not required] This guide uses [Terragrunt](https://github.com/gruntwork-io/terragrunt) and its associated file and folder structure to deploy Terraform modules. Please note that **Terragrunt is NOT required for using Terraform modules from @@ -177,9 +177,11 @@ locals { ``` +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/the-gruntwork-solution.md b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/the-gruntwork-solution.md index 2a1a603dad..309699a235 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/the-gruntwork-solution.md +++ b/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/the-gruntwork-solution.md @@ -55,9 +55,11 @@ You can use this approach on each AWS account. In many cases, you’ll only need same methodology can be applied to pre-production accounts as well. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/index.md b/docs/guides/build-it-yourself/achieve-compliance/index.md index e2a68a6ec0..6201a29108 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/index.md +++ b/docs/guides/build-it-yourself/achieve-compliance/index.md @@ -69,9 +69,11 @@ walkthrough. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/next-steps.md b/docs/guides/build-it-yourself/achieve-compliance/next-steps.md index dbde488acb..1fcdc92c4e 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/next-steps.md +++ b/docs/guides/build-it-yourself/achieve-compliance/next-steps.md @@ -12,9 +12,11 @@ Now it’s time to confirm that your configurations are correct and you didn’t +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/identity-and-access-management.md b/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/identity-and-access-management.md index 1ef9fa887f..bb79b12f09 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/identity-and-access-management.md +++ b/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/identity-and-access-management.md @@ -335,9 +335,11 @@ is no API or automation available for this functionality. In the AWS console, vi For further detail, follow the manual steps outlined in the CIS Benchmark document. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/intro.md b/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/intro.md index 590b8f4978..0769aed580 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/intro.md +++ b/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/intro.md @@ -17,9 +17,11 @@ up the [3rd edition of Terraform Up & Running](https://medium.com/gruntwork/terraform-up-running-3rd-edition-is-now-published-4b99804d922a). +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/logging.md b/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/logging.md index b51d1e58b0..bf2714edd9 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/logging.md +++ b/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/logging.md @@ -147,9 +147,11 @@ the default VPCs which exist in all regions of the account. You can use the (and default security groups) from all regions of an account, making it easier to achieve this recommendation. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/monitoring.md b/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/monitoring.md index 798dbe58ac..d2562270b1 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/monitoring.md +++ b/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/monitoring.md @@ -11,9 +11,11 @@ and [`aws_cloudwatch_metric_alarm`](https://www.terraform.io/docs/providers/aws/ Terraform resources. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/networking.md b/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/networking.md index 7a540d03b0..4f8e292a44 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/networking.md +++ b/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/networking.md @@ -20,9 +20,11 @@ create routes for subnets that don’t need them. In other words, only create ro on the services running on those subnets. This can help to avoid exposing services between networks unnecessarily. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/storage.md b/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/storage.md index 630ed63cc5..3ab050e077 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/storage.md +++ b/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/storage.md @@ -137,9 +137,11 @@ To set up Macie to analyze the desired S3 buckets, you’ll need to create a **M explicit list of buckets per region, namely in the variable `buckets_to_analyze`. For more details, see the production _Deployment Walkthrough_ guide section below. +{/* +*/} diff --git a/docs/guides/build-it-yourself/achieve-compliance/traceability-matrix.md b/docs/guides/build-it-yourself/achieve-compliance/traceability-matrix.md index ea98e1ea2c..fea860036a 100644 --- a/docs/guides/build-it-yourself/achieve-compliance/traceability-matrix.md +++ b/docs/guides/build-it-yourself/achieve-compliance/traceability-matrix.md @@ -733,9 +733,11 @@ sections above. +{/* +*/} diff --git a/docs/guides/production-framework/gruntwork-solutions/index.md b/docs/guides/production-framework/gruntwork-solutions/index.md index 10ecbc3998..b0c00cf199 100644 --- a/docs/guides/production-framework/gruntwork-solutions/index.md +++ b/docs/guides/production-framework/gruntwork-solutions/index.md @@ -41,9 +41,11 @@ Ready to try Gruntwork out? [Sign up on our website now](https://gruntwork.io/pr questions, please [contact sales](https://gruntwork.io/contact/). +{/* +*/} diff --git a/docs/guides/production-framework/index.md b/docs/guides/production-framework/index.md index 97004652f6..39a3112ffc 100644 --- a/docs/guides/production-framework/index.md +++ b/docs/guides/production-framework/index.md @@ -17,7 +17,7 @@ concrete description of the cloud setup you should be aiming for—the "right wa If you prefer a video over reading a talk, check out this talk from Gruntwork Co-Founder Yevgeniy Brikman which introduces each ingredient of the Gruntwork Production Framework, as well as how to put them all together: - +{/* Embed 100% width, responsive video as per https://www.h3xed.com/web-development/how-to-make-a-responsive-100-width-youtube-iframe-embed */}
@@ -186,9 +186,11 @@ Gruntwork to help you implement this framework. 1. [How Gruntwork can help](gruntwork-solutions/index.md) +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/automatic-updates/auto-update-features.md b/docs/guides/production-framework/ingredients/automatic-updates/auto-update-features.md index 340a90ffcd..fb85eada10 100644 --- a/docs/guides/production-framework/ingredients/automatic-updates/auto-update-features.md +++ b/docs/guides/production-framework/ingredients/automatic-updates/auto-update-features.md @@ -18,9 +18,11 @@ Your auto update solution should automatically check that none of your dependenc +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/automatic-updates/how-auto-update-should-work.md b/docs/guides/production-framework/ingredients/automatic-updates/how-auto-update-should-work.md index be301d6c67..c12a618886 100644 --- a/docs/guides/production-framework/ingredients/automatic-updates/how-auto-update-should-work.md +++ b/docs/guides/production-framework/ingredients/automatic-updates/how-auto-update-should-work.md @@ -18,9 +18,11 @@ Once the update is merged, the CI / CD pipeline again kicks in, and automaticall +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/automatic-updates/index.md b/docs/guides/production-framework/ingredients/automatic-updates/index.md index ff198d01ef..69c97c8414 100644 --- a/docs/guides/production-framework/ingredients/automatic-updates/index.md +++ b/docs/guides/production-framework/ingredients/automatic-updates/index.md @@ -12,9 +12,11 @@ It's not enough to just set up the previous ingredients; you also need an automa everything up-to-date, so that all your hard work doesn't turn into tech debt. +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/ci-cd-pipeline/ci-cd-features.md b/docs/guides/production-framework/ingredients/ci-cd-pipeline/ci-cd-features.md index cf600970ce..af1a785351 100644 --- a/docs/guides/production-framework/ingredients/ci-cd-pipeline/ci-cd-features.md +++ b/docs/guides/production-framework/ingredients/ci-cd-pipeline/ci-cd-features.md @@ -38,9 +38,11 @@ For a concrete example of a CI / CD Pipeline for AWS, see [Set up a CI/CD Pipeli AWS](https://docs.gruntwork.io/docs/guides/build-it-yourself/landing-zone/). +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/ci-cd-pipeline/ci-cd-only-path-to-prod.md b/docs/guides/production-framework/ingredients/ci-cd-pipeline/ci-cd-only-path-to-prod.md index 486e3e3782..869c9d0dcb 100644 --- a/docs/guides/production-framework/ingredients/ci-cd-pipeline/ci-cd-only-path-to-prod.md +++ b/docs/guides/production-framework/ingredients/ci-cd-pipeline/ci-cd-only-path-to-prod.md @@ -15,9 +15,11 @@ It's a bad idea to have give your CI server (e.g., Jenkins)—which your entire +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/ci-cd-pipeline/index.md b/docs/guides/production-framework/ingredients/ci-cd-pipeline/index.md index 88a714aaab..ce57c52181 100644 --- a/docs/guides/production-framework/ingredients/ci-cd-pipeline/index.md +++ b/docs/guides/production-framework/ingredients/ci-cd-pipeline/index.md @@ -7,9 +7,11 @@ pipeline) to automate their build, test, and deployment processes. ![Gruntwork Pipelines](/img/guides/production-framework/gruntwork-pipelines.png) +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/index.md b/docs/guides/production-framework/ingredients/index.md index c0e0a6e161..c77f0a4112 100644 --- a/docs/guides/production-framework/ingredients/index.md +++ b/docs/guides/production-framework/ingredients/index.md @@ -7,9 +7,11 @@ cloud effectively. +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/landing-zone/account-vending-machine.md b/docs/guides/production-framework/ingredients/landing-zone/account-vending-machine.md index ae158f4d0c..4d232fe18f 100644 --- a/docs/guides/production-framework/ingredients/landing-zone/account-vending-machine.md +++ b/docs/guides/production-framework/ingredients/landing-zone/account-vending-machine.md @@ -21,9 +21,11 @@ As part of the account provisioning process, the Account Vending Machine should +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/landing-zone/index.md b/docs/guides/production-framework/ingredients/landing-zone/index.md index f6ef396689..9bedd167d9 100644 --- a/docs/guides/production-framework/ingredients/landing-zone/index.md +++ b/docs/guides/production-framework/ingredients/landing-zone/index.md @@ -12,9 +12,11 @@ hard to fix later: i.e., getting dozens or hundreds of manually-managed accounts harder than setting up the proper controls in the first place. +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/landing-zone/what-landing-zone-should-include.md b/docs/guides/production-framework/ingredients/landing-zone/what-landing-zone-should-include.md index 45c608b572..ad4e7e70f1 100644 --- a/docs/guides/production-framework/ingredients/landing-zone/what-landing-zone-should-include.md +++ b/docs/guides/production-framework/ingredients/landing-zone/what-landing-zone-should-include.md @@ -25,9 +25,11 @@ For a concrete example of a Landing Zone for AWS, see [Configure Your AWS Accoun Zone](https://docs.gruntwork.io/docs/guides/build-it-yourself/landing-zone/). +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/other-ingredients/index.md b/docs/guides/production-framework/ingredients/other-ingredients/index.md index 76bd0d37e0..1d9c44c252 100644 --- a/docs/guides/production-framework/ingredients/other-ingredients/index.md +++ b/docs/guides/production-framework/ingredients/other-ingredients/index.md @@ -21,9 +21,11 @@ Performance optimization, cost optimization, and capacity optimization ("rightsi +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/self-service/common-self-service-use-cases.md b/docs/guides/production-framework/ingredients/self-service/common-self-service-use-cases.md index a40e073609..90471e56dc 100644 --- a/docs/guides/production-framework/ingredients/self-service/common-self-service-use-cases.md +++ b/docs/guides/production-framework/ingredients/self-service/common-self-service-use-cases.md @@ -16,9 +16,11 @@ Deploy a new app: that is, a web service written in a general purpose programmin +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/self-service/how-self-service-should-work.md b/docs/guides/production-framework/ingredients/self-service/how-self-service-should-work.md index 04081fde32..e2100790d5 100644 --- a/docs/guides/production-framework/ingredients/self-service/how-self-service-should-work.md +++ b/docs/guides/production-framework/ingredients/self-service/how-self-service-should-work.md @@ -18,9 +18,11 @@ Many Ops teams get nervous with the idea of self-service: what if the developers +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/self-service/index.md b/docs/guides/production-framework/ingredients/self-service/index.md index 47132f1fc8..2eaa36e263 100644 --- a/docs/guides/production-framework/ingredients/self-service/index.md +++ b/docs/guides/production-framework/ingredients/self-service/index.md @@ -9,9 +9,11 @@ The key idea here is that your dev team should be able to independently deploy a infrastructure those apps depend on. +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/service-catalog/application-templates.md b/docs/guides/production-framework/ingredients/service-catalog/application-templates.md index 57713bef87..07c37e6271 100644 --- a/docs/guides/production-framework/ingredients/service-catalog/application-templates.md +++ b/docs/guides/production-framework/ingredients/service-catalog/application-templates.md @@ -71,9 +71,11 @@ You'll want to make it as simple as possible for new apps to be integrated into +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/service-catalog/index.md b/docs/guides/production-framework/ingredients/service-catalog/index.md index 38fa37ce66..b2399715c0 100644 --- a/docs/guides/production-framework/ingredients/service-catalog/index.md +++ b/docs/guides/production-framework/ingredients/service-catalog/index.md @@ -22,9 +22,11 @@ Note that the term "Service Catalog" is a bit overloaded, so in the next section mean by "Service Catalog" in this guide, and what a modern Service Catalog looks like. +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/service-catalog/infrastructure-templates.md b/docs/guides/production-framework/ingredients/service-catalog/infrastructure-templates.md index 24a2cffce1..1846e6b274 100644 --- a/docs/guides/production-framework/ingredients/service-catalog/infrastructure-templates.md +++ b/docs/guides/production-framework/ingredients/service-catalog/infrastructure-templates.md @@ -81,9 +81,11 @@ Configure CI / CD tools, including: We'll discuss CI / CD more in a dedicated section later on. +{/* +*/} diff --git a/docs/guides/production-framework/ingredients/service-catalog/modern-service-catalog.md b/docs/guides/production-framework/ingredients/service-catalog/modern-service-catalog.md index 86e3804ec2..92d81feb09 100644 --- a/docs/guides/production-framework/ingredients/service-catalog/modern-service-catalog.md +++ b/docs/guides/production-framework/ingredients/service-catalog/modern-service-catalog.md @@ -47,9 +47,11 @@ Catalog should have tests built in *that systematically validate the code meets For a concrete example of a Service Catalog for AWS, see the [Gruntwork Service Catalog](https://gruntwork.io/repos). +{/* +*/} diff --git a/docs/guides/production-framework/recipes/dev-team-experience.md b/docs/guides/production-framework/recipes/dev-team-experience.md index b3eba098d8..8376abe6cb 100644 --- a/docs/guides/production-framework/recipes/dev-team-experience.md +++ b/docs/guides/production-framework/recipes/dev-team-experience.md @@ -93,9 +93,11 @@ Let's imagine that you've started a team with two developers, Ann and Bob. The t 2. The changes go through the same release process as above. +{/* +*/} diff --git a/docs/guides/production-framework/recipes/index.md b/docs/guides/production-framework/recipes/index.md index f5041ec4bd..d24f25809a 100644 --- a/docs/guides/production-framework/recipes/index.md +++ b/docs/guides/production-framework/recipes/index.md @@ -9,9 +9,11 @@ Please bear in mind that there are many ways to combine these ingredients, so wh how all these pieces can work together. +{/* +*/} diff --git a/docs/guides/production-framework/recipes/ops-team-experience.md b/docs/guides/production-framework/recipes/ops-team-experience.md index 0cc2222fea..77a8cb0ea1 100644 --- a/docs/guides/production-framework/recipes/ops-team-experience.md +++ b/docs/guides/production-framework/recipes/ops-team-experience.md @@ -28,9 +28,11 @@ On the Ops side, Carol and Daniel are responsible for maintaining your Service C 5. At this point, the auto-update system rolls out the new version of the Service Catalog to all users, just as in the previous section. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.3.0/core-concepts.md b/docs/guides/stay-up-to-date/cis/cis-1.3.0/core-concepts.md index eb726c7ff2..1376608a07 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.3.0/core-concepts.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.3.0/core-concepts.md @@ -51,9 +51,11 @@ the existing modules get updated to their CIS AWS v1.3.0 compliant versions and configure the newly created modules. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md index 981e774b54..83a01da057 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -18,7 +18,7 @@ To update to the CIS AWS Foundations Benchmark v1.3.0, you need to update your r Infrastructure as Code Library to use compatible versions. We (Gruntwork) have reviewed and updated all the library modules for compatibility with the new version of the Benchmark. As a customer, you need to update to the proper versions of the Gruntwork IaC Library to pick up the fixes/changes made to be compatible. Refer to [the -"Updating to new versions" section of "Stay Up to Date"](/library/stay-up-to-date/updating) for instructions on how to update the +"Updating to new versions" section of "Stay Up to Date"](/2.0/docs/library/guides/updating-modules/) for instructions on how to update the versions in your code. For the vast majority of the repos, the only change that will be necessary is a version number bump, but several repos @@ -30,7 +30,7 @@ version.** Gruntwork follows [semantic -versioning](/library/stay-up-to-date/versioning). For any pre-1.0 modules, this means that version updates to the minor version are considered backward +versioning](/2.0/docs/library/guides/versioning/). For any pre-1.0 modules, this means that version updates to the minor version are considered backward incompatible releases for any version updates before the 1.0.0 release. Make sure to read the release notes for the relevant modules any time you are updating minor versions! Note that you will want to read the release notes for each minor version that is updated (e.g., if you are going from v0.5.x to v0.9.x, you will want to read the notes for v0.6.0, @@ -186,9 +186,11 @@ compatible with CIS AWS v1.3.0: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-2-manual-steps.md b/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-2-manual-steps.md index d637137ce7..6472f5da75 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-2-manual-steps.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-2-manual-steps.md @@ -10,9 +10,11 @@ and 7 for 4.15). As it’s impossible to automate this subscriber’s creation, on the AWS website for detailed instructions. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-3-deploy-new-modules.md b/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-3-deploy-new-modules.md index 317336d65f..6cf2a0ac25 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-3-deploy-new-modules.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-3-deploy-new-modules.md @@ -87,9 +87,11 @@ are 22 (SSH) and 3389 (Remote Desktop)), you can add up to 10 CIDRs. Check out docs](https://github.com/gruntwork-io/terraform-aws-cis-service-catalog/tree/v0.10.0/modules/vpc-app-network-acls#calculating-nacl-rules-limits) to see how to calculate the maximum number of CIDRs that you can add. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.3.0/index.md b/docs/guides/stay-up-to-date/cis/cis-1.3.0/index.md index e8fa79e49e..f9b6ae69c7 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.3.0/index.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.3.0/index.md @@ -22,9 +22,11 @@ tag is compatible with CIS AWS v1.3.0, as well as the manuals step you need to p +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.4.0/core-concepts.md b/docs/guides/stay-up-to-date/cis/cis-1.4.0/core-concepts.md index c24189f19c..1b67fb7418 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.4.0/core-concepts.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.4.0/core-concepts.md @@ -37,9 +37,11 @@ the existing modules get updated to their CIS AWS v1.4.0 compliant versions and necessary manual steps. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md index 05225271dc..7af668477d 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -7,12 +7,12 @@ sidebar_label: Update references to the Gruntwork Infrastructure as Code Library To update to the CIS AWS Foundations Benchmark v1.4.0, you need to update your references to the Gruntwork Infrastructure as Code Library to use compatible versions. We (Gruntwork) have reviewed and updated all the library modules for compatibility with the new version of the benchmark. As a customer, you need to update to -the proper versions of the Gruntwork IaC Library to pick up the fixes/changes made to be compatible. Refer to our ["Updating to new versions"](/library/stay-up-to-date/updating) guide for instructions on how to update the +the proper versions of the Gruntwork IaC Library to pick up the fixes/changes made to be compatible. Refer to our ["Updating to new versions"](/2.0/docs/library/guides/updating-modules/) guide for instructions on how to update the versions in your code. Gruntwork follows [semantic -versioning](/library/stay-up-to-date/versioning). For any pre-1.0 modules, this means that version updates to the minor version are considered backward +versioning](/2.0/docs/library/guides/versioning/). For any pre-1.0 modules, this means that version updates to the minor version are considered backward incompatible releases for any version updates before the 1.0.0 release. Make sure to read the release notes for the relevant modules any time you are updating minor versions! Note that you will want to read the release notes for each minor version that is updated (e.g., if you are going from v0.5.x to v0.9.x, you will want to read the notes for v0.6.0, @@ -81,9 +81,11 @@ compatible with CIS AWS v1.4.0: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-2-update-the-account-baseline-modules.md b/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-2-update-the-account-baseline-modules.md index ee2257eda8..b8472083ac 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-2-update-the-account-baseline-modules.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-2-update-the-account-baseline-modules.md @@ -115,9 +115,11 @@ inputs { All the other child accounts (logs, stage, prod, etc) need the same configuration change as the security account above. Ensure you make that change in all the child accounts. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-3-manual-steps.md b/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-3-manual-steps.md index c652e275b8..f8e8cc66a0 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-3-manual-steps.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-3-manual-steps.md @@ -116,9 +116,11 @@ Error: Error creating AWSConfig rule: Failed to create AWSConfig rule: InvalidPa You may be using a region that doesn’t properly support AWS Config (e.g: `ap-northeast-3` Osaka). Please ensure this region is disabled or remove it from your opt-in regions. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.4.0/finally.md b/docs/guides/stay-up-to-date/cis/cis-1.4.0/finally.md index d75a08dea5..610c9ad9a5 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.4.0/finally.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.4.0/finally.md @@ -7,9 +7,11 @@ This guide is meant to help you get your AWS infrastructure from CIS 1.3.0 to CI If you’ve got any feedback or you think something’s missing from the guide, please get in touch via one of the [support options](/support). +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.4.0/index.md b/docs/guides/stay-up-to-date/cis/cis-1.4.0/index.md index cf0162d36b..63cc0b919b 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.4.0/index.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.4.0/index.md @@ -22,9 +22,11 @@ CIS AWS Foundations Benchmark. - [How to update to CIS AWS Foundations Benchmark v1.3.0](/guides/stay-up-to-date/cis/cis-1.3.0) +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.5.0/core-concepts.md b/docs/guides/stay-up-to-date/cis/cis-1.5.0/core-concepts.md index 8fe7b4dc96..519d4317cc 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.5.0/core-concepts.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.5.0/core-concepts.md @@ -41,9 +41,11 @@ instructions in the [Deployment walkthrough](deployment-walkthrough/step-1-check expanded the steps in the guide to include checking v1.4.0 compliance before updating and checking v1.5.0 compliance after the update. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-1-check-your-live-infrastructure-is-cis-v1.4-compliant.md b/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-1-check-your-live-infrastructure-is-cis-v1.4-compliant.md index 46d6714f44..319aeac2f0 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-1-check-your-live-infrastructure-is-cis-v1.4-compliant.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-1-check-your-live-infrastructure-is-cis-v1.4-compliant.md @@ -155,9 +155,11 @@ ready to move to [step 2](step-2-update-references-to-the-gruntwork-infrastructu references to the Gruntwork Infrastructure as Code Library. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md index 20679df552..3dc1f5d218 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -258,9 +258,9 @@ If you have successfully completed steps 2A.1 through 2A.3 then you should now m ## 2B Updating Manually -Refer to our ["Updating to new versions"](/library/stay-up-to-date/updating) guide for instructions on how to update the versions in your code. +Refer to our ["Updating to new versions"](/2.0/docs/library/guides/updating-modules/) guide for instructions on how to update the versions in your code. -Gruntwork follows [semantic versioning](/library/stay-up-to-date/versioning). For any pre-1.0 modules, this means that version updates to the minor version are considered backward incompatible releases for any version updates before the 1.0.0 release. Make sure to read the release notes for the relevant modules any time you are updating minor versions! Note that you will want to read the release notes for each minor version that is updated (e.g., if you are going from v0.5.x to v0.9.x, you will want to read the notes for v0.6.0, v0.7.0, v0.8.0, and v0.9.0 to get the full list of backward incompatible updates). +Gruntwork follows [semantic versioning](/2.0/docs/library/guides/versioning/). For any pre-1.0 modules, this means that version updates to the minor version are considered backward incompatible releases for any version updates before the 1.0.0 release. Make sure to read the release notes for the relevant modules any time you are updating minor versions! Note that you will want to read the release notes for each minor version that is updated (e.g., if you are going from v0.5.x to v0.9.x, you will want to read the notes for v0.6.0, v0.7.0, v0.8.0, and v0.9.0 to get the full list of backward incompatible updates). ### Module change logs @@ -310,9 +310,11 @@ If you have successfully completed manually updating the modules to the minimum +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-3-update-the-account-baseline-modules.md b/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-3-update-the-account-baseline-modules.md index 60f08bf12f..347816816f 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-3-update-the-account-baseline-modules.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-3-update-the-account-baseline-modules.md @@ -45,15 +45,17 @@ For Terraform, follow the migration guide in [the migration guide of the release ## Next step -If you have successfully completed step 3.1 then you should now move to [step 4](step-4-verify-the-code-changes) +If you have successfully completed step 3.1 then you should now move to [step 4](../step-4-verify-the-code-changes/) in order to verify the changes that have been made. We strongly recommend that you verify the changes that have been made _before_ executing `terraform/terragrunt apply`. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-4-verify-the-code-changes.md b/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-4-verify-the-code-changes.md index 018d395a5f..bfa395ec5b 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-4-verify-the-code-changes.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-4-verify-the-code-changes.md @@ -86,7 +86,7 @@ The output `plan` will contain messages similar to these: ### If you are using Patcher -If you used Patcher to do the upgrade then start by checking that you completed [step 2A.3](step-2-update-references-to-the-gruntwork-infrastructure-as-code-library). +If you used Patcher to do the upgrade then start by checking that you completed [step 2A.3](../step-2-update-references-to-the-gruntwork-infrastructure-as-code-library/). ### If you are updating the modules manually @@ -112,13 +112,15 @@ aws-vault exec dev -- terragrunt run-all init aws-vault exec dev -- terragrunt run-all apply ``` -After the changes have been applied we recommend you complete [step 5](step-5-check-your-live-infrastructure-is-cis-v1.5-compliant) +After the changes have been applied we recommend you complete [step 5](../step-5-check-your-live-infrastructure-is-cis-v1.5-compliant/) and confirm that your infrastructure is now CIS AWS Foundations Benchmark v1.5.0 compliant. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-5-check-your-live-infrastructure-is-cis-v1.5-compliant.md b/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-5-check-your-live-infrastructure-is-cis-v1.5-compliant.md index 90a2a8253d..4da9c5d4c5 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-5-check-your-live-infrastructure-is-cis-v1.5-compliant.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-5-check-your-live-infrastructure-is-cis-v1.5-compliant.md @@ -7,7 +7,7 @@ sidebar_label: Check your live infrastructure is CIS v1.5 compliant We suggest you now run the [Steampipe CIS v1.5.0](https://hub.steampipe.io/mods/turbot/aws_compliance/controls/benchmark.cis_v150) check against your infrastructure. -If you configured Steampipe in [step 1](step-1-check-your-live-infrastructure-is-cis-v1.4-compliant) then you can run the check: +If you configured Steampipe in [step 1](../step-1-check-your-live-infrastructure-is-cis-v1.4-compliant/) then you can run the check: ``` cd steampipe-mod-aws-compliance @@ -17,9 +17,11 @@ steampipe check aws_compliance.benchmark.cis_v150 If some checks are failing you should check the [Manual steps](/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/manual-steps) section, that contains extra steps to achieve CIS compliance. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.5.0/finally.md b/docs/guides/stay-up-to-date/cis/cis-1.5.0/finally.md index cd3f488c6b..b2abdabe9d 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.5.0/finally.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.5.0/finally.md @@ -8,9 +8,11 @@ If you’ve got any feedback or you think something’s missing from the guide, +{/* +*/} diff --git a/docs/guides/stay-up-to-date/cis/cis-1.5.0/index.md b/docs/guides/stay-up-to-date/cis/cis-1.5.0/index.md index da557f222a..b721ebad14 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.5.0/index.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.5.0/index.md @@ -24,9 +24,11 @@ To make updating to CIS AWS Foundations Benchmark v1.5.0 more straighforward we - [How to update to CIS AWS Foundations Benchmark v1.4.0](/guides/stay-up-to-date/cis/cis-1.4.0) +{/* +*/} diff --git a/docs/guides/stay-up-to-date/index.md b/docs/guides/stay-up-to-date/index.md index 83848458d3..f43a3fedca 100644 --- a/docs/guides/stay-up-to-date/index.md +++ b/docs/guides/stay-up-to-date/index.md @@ -16,7 +16,7 @@ import CardGroup from "/src/components/CardGroup" - +{/* START_DOCS_SOURCER_DYNAMIC_CONTENT id=gruntwork-releases-cards */} @@ -33,7 +33,7 @@ import CardGroup from "/src/components/CardGroup" - +{/* END_DOCS_SOURCER_DYNAMIC_CONTENT */} @@ -112,9 +112,11 @@ href="/guides/stay-up-to-date/cis/cis-1.5.0" +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2016-06/index.md b/docs/guides/stay-up-to-date/releases/2016-06/index.md index 4c595fb4ef..a5c14aa07d 100644 --- a/docs/guides/stay-up-to-date/releases/2016-06/index.md +++ b/docs/guides/stay-up-to-date/releases/2016-06/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2016-06

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2016-06. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -557,9 +557,11 @@ Here are the repos that were updated: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2016-07/index.md b/docs/guides/stay-up-to-date/releases/2016-07/index.md index 77af5063a1..21b098764d 100644 --- a/docs/guides/stay-up-to-date/releases/2016-07/index.md +++ b/docs/guides/stay-up-to-date/releases/2016-07/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2016-07

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2016-07. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -545,9 +545,11 @@ Here are the repos that were updated: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2016-08/index.md b/docs/guides/stay-up-to-date/releases/2016-08/index.md index cd5e4d96f6..d39ecd065b 100644 --- a/docs/guides/stay-up-to-date/releases/2016-08/index.md +++ b/docs/guides/stay-up-to-date/releases/2016-08/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2016-08

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2016-08. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -203,9 +203,11 @@ ENHANCEMENT: `vpc-app` and `vpc-mgmt` now allow for specifying the exact CIDR bl +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2016-09/index.md b/docs/guides/stay-up-to-date/releases/2016-09/index.md index 7a3b18f8af..6a49a251be 100644 --- a/docs/guides/stay-up-to-date/releases/2016-09/index.md +++ b/docs/guides/stay-up-to-date/releases/2016-09/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2016-09

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2016-09. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -641,9 +641,11 @@ In `modules/ecs-cluster`: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2016-10/index.md b/docs/guides/stay-up-to-date/releases/2016-10/index.md index de5c5ea0a3..a1e71cae62 100644 --- a/docs/guides/stay-up-to-date/releases/2016-10/index.md +++ b/docs/guides/stay-up-to-date/releases/2016-10/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2016-10

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2016-10. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -99,9 +99,11 @@ Here are the repos that were updated: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2016-11/index.md b/docs/guides/stay-up-to-date/releases/2016-11/index.md index 07c17fb722..87e3441ef5 100644 --- a/docs/guides/stay-up-to-date/releases/2016-11/index.md +++ b/docs/guides/stay-up-to-date/releases/2016-11/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2016-11

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2016-11. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -68,9 +68,11 @@ Here are the repos that were updated: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2016-12/index.md b/docs/guides/stay-up-to-date/releases/2016-12/index.md index a0ce1f2672..78dbb38be7 100644 --- a/docs/guides/stay-up-to-date/releases/2016-12/index.md +++ b/docs/guides/stay-up-to-date/releases/2016-12/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2016-12

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2016-12. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -282,9 +282,11 @@ This change is fully backwards-compatible in terms of the vars and outputs, but +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2017-01/index.md b/docs/guides/stay-up-to-date/releases/2017-01/index.md index 5f3c8a0260..5d0ac3df93 100644 --- a/docs/guides/stay-up-to-date/releases/2017-01/index.md +++ b/docs/guides/stay-up-to-date/releases/2017-01/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2017-01

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2017-01. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -356,9 +356,11 @@ Note that we are seeing intermittent test failures with the ALB that indicate a +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2017-02/index.md b/docs/guides/stay-up-to-date/releases/2017-02/index.md index e663599d0a..7deacbbaf9 100644 --- a/docs/guides/stay-up-to-date/releases/2017-02/index.md +++ b/docs/guides/stay-up-to-date/releases/2017-02/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2017-02

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2017-02. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -173,9 +173,11 @@ We've updated the `ecs-service-with-alb` module and example code accordingl +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2017-03/index.md b/docs/guides/stay-up-to-date/releases/2017-03/index.md index 8b1b34f385..0c4d7d2a9a 100644 --- a/docs/guides/stay-up-to-date/releases/2017-03/index.md +++ b/docs/guides/stay-up-to-date/releases/2017-03/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2017-03

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2017-03. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -430,9 +430,11 @@ To use this, you need to configure the new `iam_groups_for_cross_account_access` +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2017-04/index.md b/docs/guides/stay-up-to-date/releases/2017-04/index.md index 6d373afa2b..50f544362a 100644 --- a/docs/guides/stay-up-to-date/releases/2017-04/index.md +++ b/docs/guides/stay-up-to-date/releases/2017-04/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2017-04

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2017-04. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -305,9 +305,11 @@ terraform state mv module.database.aws_db_instance.replicas module.database.aws_ +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2017-05/index.md b/docs/guides/stay-up-to-date/releases/2017-05/index.md index bd0857419a..9bc1c0c3be 100644 --- a/docs/guides/stay-up-to-date/releases/2017-05/index.md +++ b/docs/guides/stay-up-to-date/releases/2017-05/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2017-05

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2017-05. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -220,9 +220,11 @@ Here are the repos that were updated: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2017-06/index.md b/docs/guides/stay-up-to-date/releases/2017-06/index.md index 8a328db287..2f1d8ffcbd 100644 --- a/docs/guides/stay-up-to-date/releases/2017-06/index.md +++ b/docs/guides/stay-up-to-date/releases/2017-06/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2017-06

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2017-06. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -303,9 +303,11 @@ Please note that this is a backwards incompatible release: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2017-07/index.md b/docs/guides/stay-up-to-date/releases/2017-07/index.md index e3f714ff4f..893327d940 100644 --- a/docs/guides/stay-up-to-date/releases/2017-07/index.md +++ b/docs/guides/stay-up-to-date/releases/2017-07/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2017-07

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2017-07. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -454,9 +454,11 @@ Here are the repos that were updated: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2017-08/index.md b/docs/guides/stay-up-to-date/releases/2017-08/index.md index 4f4451686e..16125c405d 100644 --- a/docs/guides/stay-up-to-date/releases/2017-08/index.md +++ b/docs/guides/stay-up-to-date/releases/2017-08/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2017-08

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2017-08. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -398,9 +398,11 @@ https://github.com/gruntwork-io/module-vpc/pull/26: Fix a bug where the `num_ava +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2017-09/index.md b/docs/guides/stay-up-to-date/releases/2017-09/index.md index a6f3c6d41f..3def5125c2 100644 --- a/docs/guides/stay-up-to-date/releases/2017-09/index.md +++ b/docs/guides/stay-up-to-date/releases/2017-09/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2017-09

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2017-09. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -199,9 +199,11 @@ https://github.com/gruntwork-io/package-static-assets/pull/3: The `s3-cloudfront +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2017-10/index.md b/docs/guides/stay-up-to-date/releases/2017-10/index.md index 620cbec545..7739f3d61d 100644 --- a/docs/guides/stay-up-to-date/releases/2017-10/index.md +++ b/docs/guides/stay-up-to-date/releases/2017-10/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2017-10

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2017-10. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -259,9 +259,11 @@ This change is backwards compatible from a code perspective, but it changes the +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2017-11/index.md b/docs/guides/stay-up-to-date/releases/2017-11/index.md index 255e067833..517e6077a1 100644 --- a/docs/guides/stay-up-to-date/releases/2017-11/index.md +++ b/docs/guides/stay-up-to-date/releases/2017-11/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2017-11

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2017-11. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -419,9 +419,11 @@ https_listener_ports_and_acm_ssl_certs = [ +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2017-12/index.md b/docs/guides/stay-up-to-date/releases/2017-12/index.md index 5e794bd18b..2c413c78a6 100644 --- a/docs/guides/stay-up-to-date/releases/2017-12/index.md +++ b/docs/guides/stay-up-to-date/releases/2017-12/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2017-12

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2017-12. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -242,9 +242,11 @@ We also suggest explicitly providing values for the `--request-url` parameter to +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2018-01/index.md b/docs/guides/stay-up-to-date/releases/2018-01/index.md index cd186de2f8..d69c81fbcc 100644 --- a/docs/guides/stay-up-to-date/releases/2018-01/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-01/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2018-01

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2018-01. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -326,9 +326,11 @@ add new tests for num_nat_gateways=0 +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2018-02/index.md b/docs/guides/stay-up-to-date/releases/2018-02/index.md index d31cfd095d..decbbdd1b8 100644 --- a/docs/guides/stay-up-to-date/releases/2018-02/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-02/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2018-02

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2018-02. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -199,9 +199,11 @@ Note, this release contains BACKWARDS INCOMPATIBLE CHANGES to the `single-server +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2018-03/index.md b/docs/guides/stay-up-to-date/releases/2018-03/index.md index c386722b68..496d68f39d 100644 --- a/docs/guides/stay-up-to-date/releases/2018-03/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-03/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2018-03

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2018-03. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -422,9 +422,11 @@ The primary use case is so we can format paths properly on Windows vs Linux. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2018-04/index.md b/docs/guides/stay-up-to-date/releases/2018-04/index.md index b9c1edbb9b..2352c7e0d9 100644 --- a/docs/guides/stay-up-to-date/releases/2018-04/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-04/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2018-04

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2018-04. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -219,9 +219,11 @@ The main motivation for locking down EC2 metadata is as follows: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2018-05/index.md b/docs/guides/stay-up-to-date/releases/2018-05/index.md index c6fe726374..b45978d6be 100644 --- a/docs/guides/stay-up-to-date/releases/2018-05/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-05/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2018-05

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2018-05. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -345,9 +345,11 @@ BACKWARDS INCOMPATIBLE CHANGES +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2018-06/index.md b/docs/guides/stay-up-to-date/releases/2018-06/index.md index a0b00c5144..46730eeeca 100644 --- a/docs/guides/stay-up-to-date/releases/2018-06/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-06/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2018-06

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2018-06. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -269,9 +269,11 @@ The `saml-iam-roles` module now sets a default max expiration of 12 hours for IA +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2018-07/index.md b/docs/guides/stay-up-to-date/releases/2018-07/index.md index d7829936c9..a1d06d8d31 100644 --- a/docs/guides/stay-up-to-date/releases/2018-07/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-07/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2018-07

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2018-07. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -110,9 +110,11 @@ Here are the repos that were updated: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2018-08/index.md b/docs/guides/stay-up-to-date/releases/2018-08/index.md index 4e37b32912..a7f7222af4 100644 --- a/docs/guides/stay-up-to-date/releases/2018-08/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-08/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2018-08

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2018-08. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -285,9 +285,11 @@ Fix a bug in the `aws-auth` script so that you can now assume an IAM role _and_ +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2018-09/index.md b/docs/guides/stay-up-to-date/releases/2018-09/index.md index 4674f3ceae..f4d7f643f4 100644 --- a/docs/guides/stay-up-to-date/releases/2018-09/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-09/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2018-09

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2018-09. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -209,9 +209,11 @@ This release is **BACKWARD INCOMPATIBLE** with previous releases only if you wer +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2018-10/index.md b/docs/guides/stay-up-to-date/releases/2018-10/index.md index 57508d34cf..2ded3fb264 100644 --- a/docs/guides/stay-up-to-date/releases/2018-10/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-10/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2018-10

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2018-10. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -319,9 +319,11 @@ A special thanks to @jeckhart for contributing all of these PRs! +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2018-11/index.md b/docs/guides/stay-up-to-date/releases/2018-11/index.md index a1bd46b5b1..8278ced15b 100644 --- a/docs/guides/stay-up-to-date/releases/2018-11/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-11/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2018-11

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2018-11. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -352,9 +352,11 @@ You can now specify custom tags for all S3 buckets created by these modules usin +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2018-12/index.md b/docs/guides/stay-up-to-date/releases/2018-12/index.md index a05791898d..0727da7de9 100644 --- a/docs/guides/stay-up-to-date/releases/2018-12/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-12/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2018-12

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2018-12. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -671,9 +671,11 @@ To upgrade to this version, simply bump the value of the `ref` parameter on your +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2019-01/index.md b/docs/guides/stay-up-to-date/releases/2019-01/index.md index d989c37d54..89b4901568 100644 --- a/docs/guides/stay-up-to-date/releases/2019-01/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-01/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2019-01

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2019-01. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -750,9 +750,11 @@ This is a backwards incompatible change. Specifically, the modules no longer nee +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2019-02/index.md b/docs/guides/stay-up-to-date/releases/2019-02/index.md index 53c8a9f01f..7359f09623 100644 --- a/docs/guides/stay-up-to-date/releases/2019-02/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-02/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2019-02

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2019-02. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -405,9 +405,11 @@ Other changes: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2019-03/index.md b/docs/guides/stay-up-to-date/releases/2019-03/index.md index 4f00756ff6..fd59a8f194 100644 --- a/docs/guides/stay-up-to-date/releases/2019-03/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-03/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2019-03

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2019-03. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -224,9 +224,11 @@ The `kinesis` module now supports server-side encryption. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2019-04/index.md b/docs/guides/stay-up-to-date/releases/2019-04/index.md index 70b12272ba..ef85381b80 100644 --- a/docs/guides/stay-up-to-date/releases/2019-04/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-04/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2019-04

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2019-04. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -655,9 +655,11 @@ This release introduces two new modules that can be used to setup Route 53 Resol +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2019-05/index.md b/docs/guides/stay-up-to-date/releases/2019-05/index.md index 875825c67e..6f58bd5418 100644 --- a/docs/guides/stay-up-to-date/releases/2019-05/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-05/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2019-05

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2019-05. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -437,9 +437,11 @@ The other modules have backwards compatible minor changes in the way dependencie +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2019-06/index.md b/docs/guides/stay-up-to-date/releases/2019-06/index.md index 2835ef045a..a255605c40 100644 --- a/docs/guides/stay-up-to-date/releases/2019-06/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-06/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2019-06

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2019-06. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -844,9 +844,11 @@ Note that as part of this, we switched to using `null` to indicate unset values +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2019-07/index.md b/docs/guides/stay-up-to-date/releases/2019-07/index.md index 6c79d9f147..b66fff0eaf 100644 --- a/docs/guides/stay-up-to-date/releases/2019-07/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-07/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2019-07

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2019-07. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -499,9 +499,11 @@ Note that as part of this, we switched to using `null` to indicate unset values +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2019-08/index.md b/docs/guides/stay-up-to-date/releases/2019-08/index.md index 44eeb5ac6d..b1aa781a0c 100644 --- a/docs/guides/stay-up-to-date/releases/2019-08/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-08/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2019-08

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2019-08. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -279,9 +279,11 @@ The module has support for the following features: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2019-09/index.md b/docs/guides/stay-up-to-date/releases/2019-09/index.md index 8645247ae7..370a3e801f 100644 --- a/docs/guides/stay-up-to-date/releases/2019-09/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-09/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2019-09

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2019-09. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -561,9 +561,11 @@ The `run-pex-as-resource` module now exposes the `null_resource` triggers and th +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2019-10/index.md b/docs/guides/stay-up-to-date/releases/2019-10/index.md index 9ea75947fa..62dea2ccfb 100644 --- a/docs/guides/stay-up-to-date/releases/2019-10/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-10/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2019-10

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2019-10. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -676,9 +676,11 @@ Listening on localhost is now optional. To disable localhost listening, set the +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2019-11/index.md b/docs/guides/stay-up-to-date/releases/2019-11/index.md index d9ca3d87c9..fe001a99ad 100644 --- a/docs/guides/stay-up-to-date/releases/2019-11/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-11/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2019-11

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2019-11. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -292,9 +292,11 @@ terraform state mv "$MODULE_ADDRESS.aws_alb.alb_without_logs[0]" " +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2019-12/index.md b/docs/guides/stay-up-to-date/releases/2019-12/index.md index 1332876bef..78e1a921ea 100644 --- a/docs/guides/stay-up-to-date/releases/2019-12/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-12/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2019-12

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2019-12. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -695,9 +695,11 @@ This release introduces the ability to tag just the VPC, but not any of the othe +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2020-01/index.md b/docs/guides/stay-up-to-date/releases/2020-01/index.md index 3de8a3e470..8291a07732 100644 --- a/docs/guides/stay-up-to-date/releases/2020-01/index.md +++ b/docs/guides/stay-up-to-date/releases/2020-01/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2020-01

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2020-01. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -920,9 +920,11 @@ Now `vpc-app` and `vpc-mgmt` will create a single VPC endpoint for all tiers. Pr +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2020-02/index.md b/docs/guides/stay-up-to-date/releases/2020-02/index.md index 238e83116f..41a265c415 100644 --- a/docs/guides/stay-up-to-date/releases/2020-02/index.md +++ b/docs/guides/stay-up-to-date/releases/2020-02/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2020-02

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2020-02. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -708,9 +708,11 @@ Now it's possible to fully deactivate the `vpc-flow-logs` module passing th +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2020-03/index.md b/docs/guides/stay-up-to-date/releases/2020-03/index.md index 6ec70bd669..6afcc737bc 100644 --- a/docs/guides/stay-up-to-date/releases/2020-03/index.md +++ b/docs/guides/stay-up-to-date/releases/2020-03/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2020-03

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2020-03. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -884,9 +884,11 @@ Thanks to @mmiranda for his contribution, and to @marinalimeira for her suggesti +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2020-04/index.md b/docs/guides/stay-up-to-date/releases/2020-04/index.md index dc2dfd9065..a24e413d97 100644 --- a/docs/guides/stay-up-to-date/releases/2020-04/index.md +++ b/docs/guides/stay-up-to-date/releases/2020-04/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2020-04

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2020-04. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -626,9 +626,11 @@ This new module allows to create a VPC Interface Endpoint to connect services wi +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2020-05/index.md b/docs/guides/stay-up-to-date/releases/2020-05/index.md index 7cc82589fc..6fb812a226 100644 --- a/docs/guides/stay-up-to-date/releases/2020-05/index.md +++ b/docs/guides/stay-up-to-date/releases/2020-05/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2020-05

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2020-05. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -768,9 +768,11 @@ Special thanks to @jdhornsby for the fix! +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2020-06/index.md b/docs/guides/stay-up-to-date/releases/2020-06/index.md index 7105614d1c..17053688f0 100644 --- a/docs/guides/stay-up-to-date/releases/2020-06/index.md +++ b/docs/guides/stay-up-to-date/releases/2020-06/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2020-06

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2020-06. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -730,9 +730,11 @@ This release adds the ability to create `tags` with the modules mentioned above. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2020-07/index.md b/docs/guides/stay-up-to-date/releases/2020-07/index.md index 286750b5db..955ff2fc41 100644 --- a/docs/guides/stay-up-to-date/releases/2020-07/index.md +++ b/docs/guides/stay-up-to-date/releases/2020-07/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2020-07

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2020-07. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -960,9 +960,11 @@ add glue support to vpc-interface-endpoint +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2020-08/index.md b/docs/guides/stay-up-to-date/releases/2020-08/index.md index 505f77e7ad..007a0e1ddd 100644 --- a/docs/guides/stay-up-to-date/releases/2020-08/index.md +++ b/docs/guides/stay-up-to-date/releases/2020-08/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2020-08

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2020-08. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -923,9 +923,11 @@ This release introduces two changes: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2020-09/index.md b/docs/guides/stay-up-to-date/releases/2020-09/index.md index f36d6ef8b8..fc7ae1a928 100644 --- a/docs/guides/stay-up-to-date/releases/2020-09/index.md +++ b/docs/guides/stay-up-to-date/releases/2020-09/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2020-09

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2020-09. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1453,9 +1453,11 @@ This is a minor update that fixes a perpetual diff in the `vpc-flow-logs` module +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2020-10/index.md b/docs/guides/stay-up-to-date/releases/2020-10/index.md index 47839d144a..d5144507ba 100644 --- a/docs/guides/stay-up-to-date/releases/2020-10/index.md +++ b/docs/guides/stay-up-to-date/releases/2020-10/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2020-10

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2020-10. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -841,9 +841,11 @@ This release updates the following modules to the latest releases of their respe +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2020-11/index.md b/docs/guides/stay-up-to-date/releases/2020-11/index.md index 6fcada5cf3..ce599b028c 100644 --- a/docs/guides/stay-up-to-date/releases/2020-11/index.md +++ b/docs/guides/stay-up-to-date/releases/2020-11/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2020-11

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2020-11. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -848,9 +848,11 @@ This release updates the default names set for the VPC DNS resolvers. The names +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2020-12/index.md b/docs/guides/stay-up-to-date/releases/2020-12/index.md index 5e90a00a37..14c8af2063 100644 --- a/docs/guides/stay-up-to-date/releases/2020-12/index.md +++ b/docs/guides/stay-up-to-date/releases/2020-12/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2020-12

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2020-12. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -938,9 +938,11 @@ The `vpc-flow-logs` module has been refactored to use the `private-s3-bucket` mo +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2021-01/index.md b/docs/guides/stay-up-to-date/releases/2021-01/index.md index 70b163d87a..58885fe652 100644 --- a/docs/guides/stay-up-to-date/releases/2021-01/index.md +++ b/docs/guides/stay-up-to-date/releases/2021-01/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2021-01

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2021-01. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -847,9 +847,11 @@ In this release, we have updated the behavior to not explicitly apply the defaul +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2021-02/index.md b/docs/guides/stay-up-to-date/releases/2021-02/index.md index d82890fa92..a30f0a502f 100644 --- a/docs/guides/stay-up-to-date/releases/2021-02/index.md +++ b/docs/guides/stay-up-to-date/releases/2021-02/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2021-02

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2021-02. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -890,9 +890,11 @@ Fixes a bug in the `ecs-cluster` module to allow SSH from CIDR blocks to work co +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2021-03/index.md b/docs/guides/stay-up-to-date/releases/2021-03/index.md index d5f9e5b456..459647681d 100644 --- a/docs/guides/stay-up-to-date/releases/2021-03/index.md +++ b/docs/guides/stay-up-to-date/releases/2021-03/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2021-03

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2021-03. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1456,9 +1456,11 @@ Support for optional resource creation via the `create_resources` parameter was +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2021-04/index.md b/docs/guides/stay-up-to-date/releases/2021-04/index.md index 22f183bc07..1a06f660ad 100644 --- a/docs/guides/stay-up-to-date/releases/2021-04/index.md +++ b/docs/guides/stay-up-to-date/releases/2021-04/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2021-04

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2021-04. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1672,9 +1672,11 @@ adds a number of conditional variables to the App Account Baseline in order to o +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2021-05/index.md b/docs/guides/stay-up-to-date/releases/2021-05/index.md index 76d6d131eb..94201c1bec 100644 --- a/docs/guides/stay-up-to-date/releases/2021-05/index.md +++ b/docs/guides/stay-up-to-date/releases/2021-05/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2021-05

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2021-05. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1150,9 +1150,11 @@ Add support for exposing client access directly in the nacls for the private app +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2021-06/index.md b/docs/guides/stay-up-to-date/releases/2021-06/index.md index 60ad2e9591..861afcd6b9 100644 --- a/docs/guides/stay-up-to-date/releases/2021-06/index.md +++ b/docs/guides/stay-up-to-date/releases/2021-06/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2021-06

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2021-06. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1164,9 +1164,11 @@ Adds support for tags to the redis module. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2021-07/index.md b/docs/guides/stay-up-to-date/releases/2021-07/index.md index 7bae3c8427..7395945fc0 100644 --- a/docs/guides/stay-up-to-date/releases/2021-07/index.md +++ b/docs/guides/stay-up-to-date/releases/2021-07/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2021-07

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2021-07. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1777,9 +1777,11 @@ Fixed bug with configuring default NACLs, where default NACLs were applied and c +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2021-08/index.md b/docs/guides/stay-up-to-date/releases/2021-08/index.md index dce6855c1d..fd705660c2 100644 --- a/docs/guides/stay-up-to-date/releases/2021-08/index.md +++ b/docs/guides/stay-up-to-date/releases/2021-08/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2021-08

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2021-08. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1478,9 +1478,11 @@ Updated the `s3-cloudfront` module to create the S3 bucket for access logs using +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2021-09/index.md b/docs/guides/stay-up-to-date/releases/2021-09/index.md index 09ecfb0cb1..7003f94271 100644 --- a/docs/guides/stay-up-to-date/releases/2021-09/index.md +++ b/docs/guides/stay-up-to-date/releases/2021-09/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2021-09

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2021-09. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -859,9 +859,11 @@ This release also adds a script to enable MFA Delete for the `private-s3-bucket` +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2021-10/index.md b/docs/guides/stay-up-to-date/releases/2021-10/index.md index ade257ced8..54a81db750 100644 --- a/docs/guides/stay-up-to-date/releases/2021-10/index.md +++ b/docs/guides/stay-up-to-date/releases/2021-10/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2021-10

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2021-10. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -874,9 +874,11 @@ With this release, we are improving the documentation around how to best use thi +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2021-11/index.md b/docs/guides/stay-up-to-date/releases/2021-11/index.md index 45a01c65e2..dff35e200c 100644 --- a/docs/guides/stay-up-to-date/releases/2021-11/index.md +++ b/docs/guides/stay-up-to-date/releases/2021-11/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2021-11

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2021-11. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -560,9 +560,11 @@ This release also updates versions of underlying dependencies: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2021-12/index.md b/docs/guides/stay-up-to-date/releases/2021-12/index.md index 5ee5dbff1d..cb148dcee1 100644 --- a/docs/guides/stay-up-to-date/releases/2021-12/index.md +++ b/docs/guides/stay-up-to-date/releases/2021-12/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2021-12

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2021-12. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -644,9 +644,11 @@ For terragrunt, add `ap-southeast-3` to the `all_aws_regions` local variable. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2022-01/index.md b/docs/guides/stay-up-to-date/releases/2022-01/index.md index 8cd11740d3..3d3d00c691 100644 --- a/docs/guides/stay-up-to-date/releases/2022-01/index.md +++ b/docs/guides/stay-up-to-date/releases/2022-01/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2022-01

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2022-01. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -987,9 +987,11 @@ route_table_deletion_timeout +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2022-02/index.md b/docs/guides/stay-up-to-date/releases/2022-02/index.md index aa66116702..12c7c6aa08 100644 --- a/docs/guides/stay-up-to-date/releases/2022-02/index.md +++ b/docs/guides/stay-up-to-date/releases/2022-02/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2022-02

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2022-02. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1940,9 +1940,11 @@ Exposed `icmp_type` and `icmp_code` in `var.private_app_allow_inbound_ports_from +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2022-03/index.md b/docs/guides/stay-up-to-date/releases/2022-03/index.md index 4f7f0e7731..61db346567 100644 --- a/docs/guides/stay-up-to-date/releases/2022-03/index.md +++ b/docs/guides/stay-up-to-date/releases/2022-03/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2022-03

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2022-03. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1178,9 +1178,11 @@ You can bump the provider by running `terraform init` with the `-upgrade` flag, +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2022-04/index.md b/docs/guides/stay-up-to-date/releases/2022-04/index.md index 4a1414de83..06ec3db88b 100644 --- a/docs/guides/stay-up-to-date/releases/2022-04/index.md +++ b/docs/guides/stay-up-to-date/releases/2022-04/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2022-04

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2022-04. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -886,9 +886,11 @@ Modules calling `s3-static-website` and `s3-cloudfront` have to bump the provide +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2022-05/index.md b/docs/guides/stay-up-to-date/releases/2022-05/index.md index d9ea06e7a6..554d10f2cd 100644 --- a/docs/guides/stay-up-to-date/releases/2022-05/index.md +++ b/docs/guides/stay-up-to-date/releases/2022-05/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2022-05

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2022-05. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -723,9 +723,11 @@ Support for python2 has been dropped. All modules that depend on python now requ +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2022-06/index.md b/docs/guides/stay-up-to-date/releases/2022-06/index.md index 9d734d2944..1061d8fbf2 100644 --- a/docs/guides/stay-up-to-date/releases/2022-06/index.md +++ b/docs/guides/stay-up-to-date/releases/2022-06/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2022-06

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2022-06. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1287,9 +1287,11 @@ Updated dependency `terraform-aws-security` to `v0.65.2`. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2022-07/index.md b/docs/guides/stay-up-to-date/releases/2022-07/index.md index 41b54790a6..cbc2e991b3 100644 --- a/docs/guides/stay-up-to-date/releases/2022-07/index.md +++ b/docs/guides/stay-up-to-date/releases/2022-07/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2022-07

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2022-07. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -861,9 +861,11 @@ https://github.com/gruntwork-io/terraform-aws-ci-steampipe/pull/28 +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2022-08/index.md b/docs/guides/stay-up-to-date/releases/2022-08/index.md index a0402ab54b..968c4c8107 100644 --- a/docs/guides/stay-up-to-date/releases/2022-08/index.md +++ b/docs/guides/stay-up-to-date/releases/2022-08/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2022-08

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2022-08. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -887,9 +887,11 @@ Special thanks to @lorelei-rupp-imprivata for catching this issue! +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2022-09/index.md b/docs/guides/stay-up-to-date/releases/2022-09/index.md index 04d4231ed3..342e720e2c 100644 --- a/docs/guides/stay-up-to-date/releases/2022-09/index.md +++ b/docs/guides/stay-up-to-date/releases/2022-09/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2022-09

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2022-09. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -148,9 +148,11 @@ Here are the repos that were updated: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2022-10/index.md b/docs/guides/stay-up-to-date/releases/2022-10/index.md index 3fb76f6438..8acf5d1fc0 100644 --- a/docs/guides/stay-up-to-date/releases/2022-10/index.md +++ b/docs/guides/stay-up-to-date/releases/2022-10/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2022-10

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2022-10. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -428,9 +428,11 @@ Due to the Cluster Autoscaler version bump, additional IAM Permissions have been +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2022-11/index.md b/docs/guides/stay-up-to-date/releases/2022-11/index.md index 19ab266c96..68eafb8beb 100644 --- a/docs/guides/stay-up-to-date/releases/2022-11/index.md +++ b/docs/guides/stay-up-to-date/releases/2022-11/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2022-11

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2022-11. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -435,9 +435,11 @@ Note: Previously, importing aws_iam_user_login_profiles would trigger a password +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2022-12/index.md b/docs/guides/stay-up-to-date/releases/2022-12/index.md index bb138da51e..56781b4172 100644 --- a/docs/guides/stay-up-to-date/releases/2022-12/index.md +++ b/docs/guides/stay-up-to-date/releases/2022-12/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2022-12

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2022-12. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -325,9 +325,11 @@ Special thanks to the following user for their contribution! +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2023-01/index.md b/docs/guides/stay-up-to-date/releases/2023-01/index.md index 7648955923..270b18d9fc 100644 --- a/docs/guides/stay-up-to-date/releases/2023-01/index.md +++ b/docs/guides/stay-up-to-date/releases/2023-01/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2023-01

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2023-01. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -382,9 +382,11 @@ If you wish to maintain backward compatibility with your existing setup of the E +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2023-02/index.md b/docs/guides/stay-up-to-date/releases/2023-02/index.md index 22c9945114..07c9bdf4f5 100644 --- a/docs/guides/stay-up-to-date/releases/2023-02/index.md +++ b/docs/guides/stay-up-to-date/releases/2023-02/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2023-02

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2023-02. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -514,9 +514,11 @@ Migrated the example in examples/asg-alarms to use a launch template instead of +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2023-03/index.md b/docs/guides/stay-up-to-date/releases/2023-03/index.md index bc06b1735d..b72e8c5e89 100644 --- a/docs/guides/stay-up-to-date/releases/2023-03/index.md +++ b/docs/guides/stay-up-to-date/releases/2023-03/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2023-03

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2023-03. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -770,9 +770,11 @@ ingress from 443 is created. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2023-04/index.md b/docs/guides/stay-up-to-date/releases/2023-04/index.md index eaf21a8093..4e9a6f9746 100644 --- a/docs/guides/stay-up-to-date/releases/2023-04/index.md +++ b/docs/guides/stay-up-to-date/releases/2023-04/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2023-04

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2023-04. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1322,9 +1322,11 @@ The new signature for Docker Compose is `docker compose <command>` (Not th +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2023-05/index.md b/docs/guides/stay-up-to-date/releases/2023-05/index.md index 13ca134c0c..dba8090da0 100644 --- a/docs/guides/stay-up-to-date/releases/2023-05/index.md +++ b/docs/guides/stay-up-to-date/releases/2023-05/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2023-05

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2023-05. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -833,9 +833,11 @@ Fixed the user certificate request with pattern name similar to the already adde +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2023-06/index.md b/docs/guides/stay-up-to-date/releases/2023-06/index.md index 7319d67aed..2a8d4afccb 100644 --- a/docs/guides/stay-up-to-date/releases/2023-06/index.md +++ b/docs/guides/stay-up-to-date/releases/2023-06/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2023-06

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2023-06. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -896,9 +896,11 @@ Note: EKS 1.26 requires kubergrunt v0.11.3 and above +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2023-07/index.md b/docs/guides/stay-up-to-date/releases/2023-07/index.md index f56e176167..c65b595394 100644 --- a/docs/guides/stay-up-to-date/releases/2023-07/index.md +++ b/docs/guides/stay-up-to-date/releases/2023-07/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2023-07

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2023-07. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -648,9 +648,11 @@ Remove deprecated eks version 1.22 +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2023-08/index.md b/docs/guides/stay-up-to-date/releases/2023-08/index.md index 00d70eb9d2..55b223a958 100644 --- a/docs/guides/stay-up-to-date/releases/2023-08/index.md +++ b/docs/guides/stay-up-to-date/releases/2023-08/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2023-08

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2023-08. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1072,9 +1072,11 @@ This release includes the following improvements: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2023-09/index.md b/docs/guides/stay-up-to-date/releases/2023-09/index.md index f5690dc6a3..871988e6d1 100644 --- a/docs/guides/stay-up-to-date/releases/2023-09/index.md +++ b/docs/guides/stay-up-to-date/releases/2023-09/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2023-09

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2023-09. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -486,9 +486,11 @@ Updated for aws provider v5 compatibility. See Migration Guide for breaking chan +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2023-10/index.md b/docs/guides/stay-up-to-date/releases/2023-10/index.md index 97d8e3e31e..a84564479c 100644 --- a/docs/guides/stay-up-to-date/releases/2023-10/index.md +++ b/docs/guides/stay-up-to-date/releases/2023-10/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2023-10

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2023-10. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1388,9 +1388,11 @@ Initial release of devops-foundations templates +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2023-11/index.md b/docs/guides/stay-up-to-date/releases/2023-11/index.md index 3854b1778e..8d7b7592e7 100644 --- a/docs/guides/stay-up-to-date/releases/2023-11/index.md +++ b/docs/guides/stay-up-to-date/releases/2023-11/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2023-11

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2023-11. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -759,9 +759,11 @@ NOTE: We have since discovered that this release should have been classified as +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2023-12/index.md b/docs/guides/stay-up-to-date/releases/2023-12/index.md index c7b3ce0f9a..22871648b8 100644 --- a/docs/guides/stay-up-to-date/releases/2023-12/index.md +++ b/docs/guides/stay-up-to-date/releases/2023-12/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2023-12

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2023-12. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -803,9 +803,11 @@ Update to latest `terraform-aws-service-catalog` and `terraform-aws-vpc` modules +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2024-01/index.md b/docs/guides/stay-up-to-date/releases/2024-01/index.md index 1a2e0b2da3..4508a667cd 100644 --- a/docs/guides/stay-up-to-date/releases/2024-01/index.md +++ b/docs/guides/stay-up-to-date/releases/2024-01/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2024-01

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2024-01. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -743,9 +743,11 @@ Special thanks to the following users for their contribution! +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2024-02/index.md b/docs/guides/stay-up-to-date/releases/2024-02/index.md index 69f04553bf..1e01568586 100644 --- a/docs/guides/stay-up-to-date/releases/2024-02/index.md +++ b/docs/guides/stay-up-to-date/releases/2024-02/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2024-02

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2024-02. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -875,9 +875,11 @@ Update the outputs of the Transit Gateway module. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2024-03/index.md b/docs/guides/stay-up-to-date/releases/2024-03/index.md index 3f6c8fa974..fa66b191d8 100644 --- a/docs/guides/stay-up-to-date/releases/2024-03/index.md +++ b/docs/guides/stay-up-to-date/releases/2024-03/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2024-03

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2024-03. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1525,9 +1525,11 @@ Special thanks to the following users for their contribution! +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2024-04/index.md b/docs/guides/stay-up-to-date/releases/2024-04/index.md index 3c43d3fbef..fa991eebc1 100644 --- a/docs/guides/stay-up-to-date/releases/2024-04/index.md +++ b/docs/guides/stay-up-to-date/releases/2024-04/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2024-04

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2024-04. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1625,9 +1625,11 @@ Default EKS version is 1.29 with this release! Please see the links below for fu +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2024-05/index.md b/docs/guides/stay-up-to-date/releases/2024-05/index.md index 0ac5bb10da..b125d46672 100644 --- a/docs/guides/stay-up-to-date/releases/2024-05/index.md +++ b/docs/guides/stay-up-to-date/releases/2024-05/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2024-05

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2024-05. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1342,9 +1342,11 @@ This release includes updates to breaking changes in multiple actions. Given tha +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2024-06/index.md b/docs/guides/stay-up-to-date/releases/2024-06/index.md index 643c139bd9..13a92be0d5 100644 --- a/docs/guides/stay-up-to-date/releases/2024-06/index.md +++ b/docs/guides/stay-up-to-date/releases/2024-06/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2024-06

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2024-06. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -871,9 +871,11 @@ This release updates our multi-region code generators to use [Boilerplate](https +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2024-07/index.md b/docs/guides/stay-up-to-date/releases/2024-07/index.md index 08b7bd4115..391bbdc18d 100644 --- a/docs/guides/stay-up-to-date/releases/2024-07/index.md +++ b/docs/guides/stay-up-to-date/releases/2024-07/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2024-07

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2024-07. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1458,9 +1458,11 @@ For Pipelines users that allowlist specific actions, version 2.0 includes the fo +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2024-08/index.md b/docs/guides/stay-up-to-date/releases/2024-08/index.md index 5a0e86f31b..abe43914ae 100644 --- a/docs/guides/stay-up-to-date/releases/2024-08/index.md +++ b/docs/guides/stay-up-to-date/releases/2024-08/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2024-08

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2024-08. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -856,9 +856,11 @@ This is a no-op release to include a patcher config change, no module code was c +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2024-09/index.md b/docs/guides/stay-up-to-date/releases/2024-09/index.md index ab4533243a..efe43b33c2 100644 --- a/docs/guides/stay-up-to-date/releases/2024-09/index.md +++ b/docs/guides/stay-up-to-date/releases/2024-09/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2024-09

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2024-09. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -772,9 +772,11 @@ Default version of EKS is `1.30` with this release! Please see the links below f +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2024-10/index.md b/docs/guides/stay-up-to-date/releases/2024-10/index.md index 60fce6df8e..c828b06721 100644 --- a/docs/guides/stay-up-to-date/releases/2024-10/index.md +++ b/docs/guides/stay-up-to-date/releases/2024-10/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2024-10

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2024-10. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1189,9 +1189,11 @@ This PR does NOT introduce any changes that are not backwards compatible or requ +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2024-11/index.md b/docs/guides/stay-up-to-date/releases/2024-11/index.md index 4a65161d7e..2d0513daa7 100644 --- a/docs/guides/stay-up-to-date/releases/2024-11/index.md +++ b/docs/guides/stay-up-to-date/releases/2024-11/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2024-11

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2024-11. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -491,9 +491,11 @@ Here are the repos that were updated: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2024-12/index.md b/docs/guides/stay-up-to-date/releases/2024-12/index.md index e140e99526..d731a5c2ca 100644 --- a/docs/guides/stay-up-to-date/releases/2024-12/index.md +++ b/docs/guides/stay-up-to-date/releases/2024-12/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2024-12

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2024-12. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -728,9 +728,11 @@ New Terraform module implements a CloudFront Distribution that supports custom o +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2025-01/index.md b/docs/guides/stay-up-to-date/releases/2025-01/index.md index febdc23a51..f388dbd8f3 100644 --- a/docs/guides/stay-up-to-date/releases/2025-01/index.md +++ b/docs/guides/stay-up-to-date/releases/2025-01/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2025-01

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2025-01. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -862,9 +862,11 @@ Added option to use service-linked role. (`account-baseline-app` module) +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2025-02/index.md b/docs/guides/stay-up-to-date/releases/2025-02/index.md index e132ab45f8..390f978b81 100644 --- a/docs/guides/stay-up-to-date/releases/2025-02/index.md +++ b/docs/guides/stay-up-to-date/releases/2025-02/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2025-02

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2025-02. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1168,9 +1168,11 @@ Fixes a bug was introduced in pipelines [v0.32.0](https://github.com/gruntwork-i +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2025-03/index.md b/docs/guides/stay-up-to-date/releases/2025-03/index.md index 3c92a21295..b44092366b 100644 --- a/docs/guides/stay-up-to-date/releases/2025-03/index.md +++ b/docs/guides/stay-up-to-date/releases/2025-03/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2025-03

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2025-03. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -886,9 +886,11 @@ If `pipelines-execute` exits with non-zero return code we now forward stderr to +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2025-04/index.md b/docs/guides/stay-up-to-date/releases/2025-04/index.md index 9066e9cfe3..d35244af9a 100644 --- a/docs/guides/stay-up-to-date/releases/2025-04/index.md +++ b/docs/guides/stay-up-to-date/releases/2025-04/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2025-04

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2025-04. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -717,9 +717,11 @@ Default EKS version is 1.31 with this release! Please see the links below for fu +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2025-05/index.md b/docs/guides/stay-up-to-date/releases/2025-05/index.md index b784d1c95e..8b8edb443f 100644 --- a/docs/guides/stay-up-to-date/releases/2025-05/index.md +++ b/docs/guides/stay-up-to-date/releases/2025-05/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2025-05

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2025-05. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -899,9 +899,11 @@ Each release will include detailed notes indicating whether changes are breaking +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2025-06/index.md b/docs/guides/stay-up-to-date/releases/2025-06/index.md index d19644f27f..bf40bbc11d 100644 --- a/docs/guides/stay-up-to-date/releases/2025-06/index.md +++ b/docs/guides/stay-up-to-date/releases/2025-06/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2025-06

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2025-06. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -404,9 +404,11 @@ Each release will include detailed notes indicating whether changes are breaking +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2025-07/index.md b/docs/guides/stay-up-to-date/releases/2025-07/index.md index 8b1128066d..ebee67a535 100644 --- a/docs/guides/stay-up-to-date/releases/2025-07/index.md +++ b/docs/guides/stay-up-to-date/releases/2025-07/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2025-07

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2025-07. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -743,9 +743,11 @@ Updated the following modules to use terraform-aws-security v1.0.1 and terraform +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2025-08/index.md b/docs/guides/stay-up-to-date/releases/2025-08/index.md index 24e2eb793a..38e2631037 100644 --- a/docs/guides/stay-up-to-date/releases/2025-08/index.md +++ b/docs/guides/stay-up-to-date/releases/2025-08/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2025-08

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2025-08. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -725,9 +725,11 @@ Each release will include detailed notes indicating whether changes are breaking +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2025-09/index.md b/docs/guides/stay-up-to-date/releases/2025-09/index.md index 03a4b1be90..d3f59bcf66 100644 --- a/docs/guides/stay-up-to-date/releases/2025-09/index.md +++ b/docs/guides/stay-up-to-date/releases/2025-09/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2025-09

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2025-09. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -439,9 +439,11 @@ This release sets the default version of Karpenter to `1.6.2` and also updates t +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2025-10/index.md b/docs/guides/stay-up-to-date/releases/2025-10/index.md index 368b54e7cc..5b4885a462 100644 --- a/docs/guides/stay-up-to-date/releases/2025-10/index.md +++ b/docs/guides/stay-up-to-date/releases/2025-10/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2025-10

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2025-10. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -881,9 +881,11 @@ The following attributes and variables have were added: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2025-11/index.md b/docs/guides/stay-up-to-date/releases/2025-11/index.md index cb81b41cc2..b837d6fbc2 100644 --- a/docs/guides/stay-up-to-date/releases/2025-11/index.md +++ b/docs/guides/stay-up-to-date/releases/2025-11/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2025-11

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2025-11. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -480,9 +480,11 @@ This is an interim fix, with more nuanced flag ordering planned for the future. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2025-12/index.md b/docs/guides/stay-up-to-date/releases/2025-12/index.md index d1f09c3e2c..12807a40aa 100644 --- a/docs/guides/stay-up-to-date/releases/2025-12/index.md +++ b/docs/guides/stay-up-to-date/releases/2025-12/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2025-12

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2025-12. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -612,9 +612,11 @@ This release updates the module's AWS provider version constraint to suppor +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2026-01/index.md b/docs/guides/stay-up-to-date/releases/2026-01/index.md index 90aed52050..78ec3c269d 100644 --- a/docs/guides/stay-up-to-date/releases/2026-01/index.md +++ b/docs/guides/stay-up-to-date/releases/2026-01/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2026-01

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2026-01. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -888,9 +888,11 @@ Default EKS version is 1.33 with this release! Please see the links below for fu +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2026-02/index.md b/docs/guides/stay-up-to-date/releases/2026-02/index.md index dfbe5e6d74..a3a155d69f 100644 --- a/docs/guides/stay-up-to-date/releases/2026-02/index.md +++ b/docs/guides/stay-up-to-date/releases/2026-02/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2026-02

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2026-02. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1163,9 +1163,11 @@ Each release will include detailed notes indicating whether changes are breaking +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2026-03/index.md b/docs/guides/stay-up-to-date/releases/2026-03/index.md index cd8f3125c3..838b4dcb49 100644 --- a/docs/guides/stay-up-to-date/releases/2026-03/index.md +++ b/docs/guides/stay-up-to-date/releases/2026-03/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2026-03

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2026-03. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -572,9 +572,11 @@ The validation package is now exported directly, so consumers of Boilerplate as +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/2026-04/index.md b/docs/guides/stay-up-to-date/releases/2026-04/index.md index b6ee5a57ac..1dd5e56a17 100644 --- a/docs/guides/stay-up-to-date/releases/2026-04/index.md +++ b/docs/guides/stay-up-to-date/releases/2026-04/index.md @@ -4,7 +4,7 @@

Guides / Update Guides / Releases / 2026-04

This page lists all the updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/) that were released in 2026-04. -For instructions on how to use these updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +For instructions on how to use these updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). Here are the repos that were updated: @@ -1150,9 +1150,11 @@ Default EKS version is 1.34 with this release! Please see the links below for fu +{/* +*/} diff --git a/docs/guides/stay-up-to-date/releases/index.md b/docs/guides/stay-up-to-date/releases/index.md index 2a05a7eef1..5868ef0d1e 100644 --- a/docs/guides/stay-up-to-date/releases/index.md +++ b/docs/guides/stay-up-to-date/releases/index.md @@ -8,7 +8,7 @@ import CardGroup from "/src/components/CardGroup" This page is lists all updates to the [Gruntwork Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-library/), grouped by month. For instructions on how to use these -updates in your code, check out the [updating documentation](/library/stay-up-to-date/updating). +updates in your code, check out the [updating documentation](/2.0/docs/library/guides/updating-modules/). @@ -132,9 +132,11 @@ updates in your code, check out the [updating documentation](/library/stay-up-to +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/core-concepts.md b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/core-concepts.md index e5d7cd7477..f157a234c4 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/core-concepts.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/core-concepts.md @@ -43,9 +43,11 @@ walkthrough, refer to [the official Terragrunt documentation](https://terragrunt.gruntwork.io/docs/features/keep-your-terragrunt-architecture-dry/). +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/intro.md b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/intro.md index 7b1845dc96..5f2f1dcb2f 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/intro.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/intro.md @@ -1,6 +1,6 @@ # Update Approach -:::danger Prerequisite: Update Terragrunt to a compatible version +:::danger[Prerequisite: Update Terragrunt to a compatible version] This guide assumes you are using Terragrunt version [v0.35.0](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.35.0) or newer, so that all bug fixes for multiple @@ -40,9 +40,11 @@ include "envcommon" { ``` +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/optional-even-dryer-configuration.md b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/optional-even-dryer-configuration.md index 09ca65eebd..394ce1c265 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/optional-even-dryer-configuration.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/optional-even-dryer-configuration.md @@ -181,9 +181,11 @@ However, in this way, you can bind references in the parent configuration that a the `inputs` attribute even if it references `dependency` blocks. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/refactoring-common-configurations-for-a-component.md b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/refactoring-common-configurations-for-a-component.md index 423e2e423c..4c1b43f1ea 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/refactoring-common-configurations-for-a-component.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/refactoring-common-configurations-for-a-component.md @@ -271,9 +271,11 @@ At this point, your child Terragrunt configuration should be significantly small moved to the common component configuration. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/update-to-the-service-catalog-based-reference-architecture.md b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/update-to-the-service-catalog-based-reference-architecture.md index 5632c988ac..02fec41f78 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/update-to-the-service-catalog-based-reference-architecture.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/update-to-the-service-catalog-based-reference-architecture.md @@ -27,9 +27,11 @@ Updating to the Service Catalog from a DRY Reference Architecture version is not fully supported by Gruntwork. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/index.md b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/index.md index a1fec5e589..08be681f17 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/index.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/index.md @@ -23,9 +23,11 @@ An overview of the multi-include feature and how it helps to DRY up the Gruntwor The steps you need to take to update your code to use multi-include to avoid duplicating common configuration. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v3/core-concepts.md b/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v3/core-concepts.md index d7c243cce5..a1ec9c049a 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v3/core-concepts.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v3/core-concepts.md @@ -21,9 +21,11 @@ updating references to Gruntwork modules and the Gruntwork Reference Architecture to be compatible with AWS provider version 3. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v3/deployment-walkthrough.md b/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v3/deployment-walkthrough.md index 9f1b7e6c9b..9d2e615df3 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v3/deployment-walkthrough.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v3/deployment-walkthrough.md @@ -8,7 +8,7 @@ library to test and update the code to be compatible with AWS provider version 3 the proper versions of the Gruntwork IaC Library to pick up the fixes/changes that were made to be compatible. Be sure to read the release notes to know what changes need to be made to update to that version. -Refer to our ["Updating to new versions"](/library/stay-up-to-date/updating) guide +Refer to our ["Updating to new versions"](/2.0/docs/library/guides/updating-modules/) guide for instructions on how to update the versions in your code. The following table provides a summary of all the relevant Gruntwork AWS modules and the respective versions that are @@ -17,7 +17,7 @@ compatible with AWS provider version 3. :::caution Gruntwork follows [semantic -versioning](/library/stay-up-to-date/versioning). +versioning](/2.0/docs/library/guides/versioning/). For any pre-1.0 modules, this means that version updates to the minor version are considered backwards incompatible releases for any version updates prior to 1.0.0 release. Make sure to read the release notes for the relevant modules any @@ -181,9 +181,11 @@ on how to update your components to be compatible with AWS provider v3. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v3/index.md b/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v3/index.md index d3be403c94..bbcb38e574 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v3/index.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v3/index.md @@ -28,9 +28,11 @@ which Gruntwork Repo version tag is compatible with AWS provider v3. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v4/core-concepts.md b/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v4/core-concepts.md index 6960eddfcd..c2be892c2d 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v4/core-concepts.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v4/core-concepts.md @@ -13,9 +13,11 @@ on updating to AWS provider version 4. The rest of this guide will focus on upda modules and the Gruntwork Reference Architecture to be compatible with AWS provider version 4. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v4/deployment-walkthrough.md b/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v4/deployment-walkthrough.md index 11bd9c07ee..e95a221a9a 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v4/deployment-walkthrough.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v4/deployment-walkthrough.md @@ -8,7 +8,7 @@ library to test and update the code to be compatible with AWS provider version 4 the proper versions of the Gruntwork IaC Library to pick up the fixes/changes that were made to be compatible. Be sure to read the release notes to know what changes need to be made to update to that version. -Refer to our guide on ["Updating to new versions"](/library/stay-up-to-date/updating) +Refer to our guide on ["Updating to new versions"](/2.0/docs/library/guides/updating-modules/) for instructions on how to update the versions in your code. The following table lists the versions of relevant Gruntwork AWS IaC library modules and Service Catalogs which are @@ -18,7 +18,7 @@ for alternatives to those modules. :::caution -Gruntwork follows [semantic versioning](/library/stay-up-to-date/versioning). +Gruntwork follows [semantic versioning](/2.0/docs/library/guides/versioning/). For pre-1.0 modules, version updates to the _minor_ version are considered backward incompatible releases. Make sure to read the release notes for the relevant modules anytime you are updating minor versions! For example, if you are going from `v0.5.x` to `v0.9.x`, read the notes for `v0.6.0`, `v0.7.0`, `v0.8.0`, and `v0.9.0` to get the migration steps for @@ -140,9 +140,11 @@ To update your Reference Architecture: If you have any questions, we'd love to hear them. Please reach out to Gruntwork Support. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v4/index.md b/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v4/index.md index c1d6fe41ff..87067f0f2e 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v4/index.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-update-to-aws-provider-v4/index.md @@ -26,9 +26,11 @@ which Gruntwork Repo version tag is compatible with AWS provider v4. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-1.1/core-concepts.md b/docs/guides/stay-up-to-date/terraform/terraform-1.1/core-concepts.md index 32d3f57238..c4ad0cebd0 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-1.1/core-concepts.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-1.1/core-concepts.md @@ -12,9 +12,11 @@ For more info, check out the for a complete introduction, check out the post](https://www.hashicorp.com/blog/terraform-1-1-improves-refactoring-and-the-cloud-cli-experience). +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-1.1/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-1-x.md b/docs/guides/stay-up-to-date/terraform/terraform-1.1/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-1-x.md index 9f388f84b0..4190d5c062 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-1.1/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-1-x.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-1.1/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-1-x.md @@ -29,9 +29,11 @@ If you haven’t already, you need to: as possible. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-1.1/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/terraform/terraform-1.1/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md index 320b8294b0..e09d4a0218 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-1.1/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-1.1/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -19,7 +19,7 @@ Therefore, the only changes that you will need to do are version number bumps. :::caution Gruntwork follows [semantic -versioning](/library/stay-up-to-date/versioning). +versioning](/2.0/docs/library/guides/versioning/). For any pre-1.0 modules, this means that version updates to the minor version are considered backwards incompatible releases for any version updates prior to 1.0.0 release. Make sure to read the release notes for the relevant modules any @@ -138,9 +138,11 @@ and the respective versions that are compatible with Terraform 1.1: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-1.1/index.md b/docs/guides/stay-up-to-date/terraform/terraform-1.1/index.md index 61f29d24b0..22f2504cfe 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-1.1/index.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-1.1/index.md @@ -26,9 +26,11 @@ tag is compatible with Terraform 1.1. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-1.x/core-concepts.md b/docs/guides/stay-up-to-date/terraform/terraform-1.x/core-concepts.md index 3f00813af1..1fe6004685 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-1.x/core-concepts.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-1.x/core-concepts.md @@ -20,9 +20,11 @@ notes](https://github.com/hashicorp/terraform/releases/tag/v1.0.0): > bugs. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-1.x/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-15.md b/docs/guides/stay-up-to-date/terraform/terraform-1.x/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-15.md index 0be1f842ea..1e75b12beb 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-1.x/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-15.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-1.x/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-15.md @@ -26,9 +26,11 @@ If you haven’t already, you need to: as possible. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-1.x/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/terraform/terraform-1.x/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md index ac37638e25..64f03e1bed 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-1.x/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-1.x/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -21,7 +21,7 @@ changes need to be made to update to the new version.** :::caution Gruntwork follows [semantic -versioning](/library/stay-up-to-date/versioning). +versioning](/2.0/docs/library/guides/versioning/). For any pre-1.0 modules, this means that version updates to the minor version are considered backwards incompatible releases for any version updates prior to 1.0.0 release. Make sure to read the release notes for the relevant modules any @@ -172,9 +172,11 @@ and the respective versions that are compatible with Terraform 1.x: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-1.x/index.md b/docs/guides/stay-up-to-date/terraform/terraform-1.x/index.md index e2ce436509..e3199dabb3 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-1.x/index.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-1.x/index.md @@ -28,9 +28,11 @@ tag is compatible with Terraform 1.x. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-12/deployment-walkthrough.md b/docs/guides/stay-up-to-date/terraform/terraform-12/deployment-walkthrough.md index 296b4cd247..54b7ad7c94 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-12/deployment-walkthrough.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-12/deployment-walkthrough.md @@ -438,9 +438,11 @@ here: At the end of this, you should be able to run `terragrunt plan` cleanly. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-12/index.md b/docs/guides/stay-up-to-date/terraform/terraform-12/index.md index 007dc0df60..0a88014574 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-12/index.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-12/index.md @@ -33,9 +33,11 @@ To support this: This means that both the modules and the live config need to be updated in order to support TF12. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-12/version-compatibility-table.md b/docs/guides/stay-up-to-date/terraform/terraform-12/version-compatibility-table.md index b0b1e9ee60..ec32b87ae0 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-12/version-compatibility-table.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-12/version-compatibility-table.md @@ -40,9 +40,11 @@ The following lists our Terraform packages and their compatibility with Terrafor | [terraform-kubernetes-helm](https://github.com/gruntwork-io/terraform-kubernetes-helm) | <=v0.4.0 | >=v0.5.0 | +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-13/core-concepts.md b/docs/guides/stay-up-to-date/terraform/terraform-13/core-concepts.md index 4ec6dd51cc..a1682ad9e8 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-13/core-concepts.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-13/core-concepts.md @@ -17,9 +17,11 @@ Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-libr update to these new versions and make other changes to your code, as described in the following section. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-12.md b/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-12.md index c1c4294558..34fe9e6f37 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-12.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-12.md @@ -15,9 +15,11 @@ If you haven’t already, you need to: as possible. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-2-update-your-code-to-be-compatible-with-terraform-0-13.md b/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-2-update-your-code-to-be-compatible-with-terraform-0-13.md index ced3d6ca17..fcd0874622 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-2-update-your-code-to-be-compatible-with-terraform-0-13.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-2-update-your-code-to-be-compatible-with-terraform-0-13.md @@ -9,9 +9,11 @@ compatible with Terraform 0.13 by following HashiCorp’s [Terraform 0.13 Upgrade Guide](https://www.terraform.io/upgrade-guides/0-13.html). +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-3-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-3-update-references-to-the-gruntwork-infrastructure-as-code-library.md index 2d9af9231b..0b1ed9993b 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-3-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-3-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -7,7 +7,7 @@ sidebar_label: Update Gruntwork IaC module references In order to take advantage of the Terraform 0.13, you need to update your references to the Gruntwork Infrastructure as Code Library to use a compatible version. We (Gruntwork) have gone through all our modules in the library to test and update the code to be compatible with Terraform 0.13. As a customer, you need to update to -the proper versions of the Gruntwork library to pick up the fixes/changes that were made to be compatible. Refer to our ["Updating to new versions"](/library/stay-up-to-date/updating) guide for instructions on how to update the +the proper versions of the Gruntwork library to pick up the fixes/changes that were made to be compatible. Refer to our ["Updating to new versions"](/2.0/docs/library/guides/updating-modules/) guide for instructions on how to update the versions in your code. For the vast majority of the repos, the only change that will be necessary is a version number bump, but several repos @@ -19,7 +19,7 @@ user, pay special attention to the release notes! :::caution Gruntwork follows [semantic -versioning](/library/stay-up-to-date/versioning). +versioning](/2.0/docs/library/guides/versioning/). For any pre-1.0 modules, this means that version updates to the minor version are considered backwards incompatible releases for any version updates prior to 1.0.0 release. Make sure to read the release notes for the relevant modules any @@ -170,9 +170,11 @@ compatible with Terraform 0.13: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-4-update-provider-sources.md b/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-4-update-provider-sources.md index 399da0bc11..cdfc575f88 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-4-update-provider-sources.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/step-4-update-provider-sources.md @@ -33,9 +33,11 @@ terraform state replace-provider -- -/aws registry.terraform.io/hashicorp/aws ``` +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/updating-the-gruntwork-reference-architecture-to-terraform-0-13.md b/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/updating-the-gruntwork-reference-architecture-to-terraform-0-13.md index 2d59833cc1..8fc45a8fbf 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/updating-the-gruntwork-reference-architecture-to-terraform-0-13.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-13/deployment-walkthrough/updating-the-gruntwork-reference-architecture-to-terraform-0-13.md @@ -39,9 +39,11 @@ refer to PRs in the Standard Reference Architecture section above. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-13/index.md b/docs/guides/stay-up-to-date/terraform/terraform-13/index.md index c5d464eb83..9b385d5d08 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-13/index.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-13/index.md @@ -26,9 +26,11 @@ tag is compatible with Terraform 0.13. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-14/core-concepts.md b/docs/guides/stay-up-to-date/terraform/terraform-14/core-concepts.md index b2167f6803..c11ba757ce 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-14/core-concepts.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-14/core-concepts.md @@ -18,9 +18,11 @@ Infrastructure as Code Library](https://gruntwork.io/infrastructure-as-code-libr update to these new versions and make other changes to your code, as described in the following section. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-13.md b/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-13.md index e05b916fee..dc1f2fd516 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-13.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-13.md @@ -9,10 +9,10 @@ If you haven’t already, you need to: 1. Update your code to work with Terraform 0.13. Do NOT skip from, say, 0.11, straight to 0.14. You MUST update to 0.13.0 or above first! If you’re still on Terraform 0.11 or older, see our [Terraform 0.12 upgrade - guide](../../terraform-12) for + guide](/guides/stay-up-to-date/terraform/terraform-12/) for instructions. If you’re still on Terraform 0.12, see our [Terraform 0.13 upgrade - guide](../../terraform-13). + guide](/guides/stay-up-to-date/terraform/terraform-13/). 2. Update all your Gruntwork modules to the latest versions just _before_ the TF 0.14 versions in the compatibility table below. The upgrade will be much @@ -20,9 +20,11 @@ If you haven’t already, you need to: as possible. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-2-update-your-code-to-be-compatible-with-terraform-0-14.md b/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-2-update-your-code-to-be-compatible-with-terraform-0-14.md index 753313c5fe..935effb508 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-2-update-your-code-to-be-compatible-with-terraform-0-14.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-2-update-your-code-to-be-compatible-with-terraform-0-14.md @@ -9,9 +9,11 @@ compatible with Terraform 0.14 by following HashiCorp’s [Terraform 0.14 Upgrade Guide](https://www.terraform.io/upgrade-guides/0-14.html). +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-3-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-3-update-references-to-the-gruntwork-infrastructure-as-code-library.md index 8d426f1656..fa8f7d5d13 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-3-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-3-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -7,7 +7,7 @@ sidebar_label: Update Gruntwork IaC module references In order to take advantage of the Terraform 0.14, you need to update your references to the Gruntwork Infrastructure as Code Library to use a compatible version. We (Gruntwork) have gone through all our modules in the library to test and update the code to be compatible with Terraform 0.14. As a customer, you need to update to -the proper versions of the Gruntwork library to pick up the fixes/changes that we made to be compatible. Refer to our ["Updating to new versions"](/library/stay-up-to-date/updating) guide for instructions on how to update the +the proper versions of the Gruntwork library to pick up the fixes/changes that we made to be compatible. Refer to our ["Updating to new versions"](/2.0/docs/library/guides/updating-modules/) guide for instructions on how to update the versions in your code. For the vast majority of the repos, the only change that will be necessary is a version number bump, but several repos @@ -18,7 +18,7 @@ version.** :::caution Gruntwork follows [semantic -versioning](/library/stay-up-to-date/versioning). +versioning](/2.0/docs/library/guides/versioning/). For any pre-1.0 modules, this means that version updates to the minor version are considered backwards incompatible releases for any version updates prior to 1.0.0 release. Make sure to read the release notes for the relevant modules any @@ -169,9 +169,11 @@ compatible with Terraform 0.14: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-4-start-using-lock-files.md b/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-4-start-using-lock-files.md index fbacf831a3..79dcfb4141 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-4-start-using-lock-files.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-14/deployment-walkthrough/step-4-start-using-lock-files.md @@ -16,9 +16,11 @@ automatically copy the `.terraform.lock.hcl` file right next to your `terragrunt to version control. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-14/index.md b/docs/guides/stay-up-to-date/terraform/terraform-14/index.md index 519e2ee663..29e1254976 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-14/index.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-14/index.md @@ -27,9 +27,11 @@ tag is compatible with Terraform 0.14. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-15/core-concepts.md b/docs/guides/stay-up-to-date/terraform/terraform-15/core-concepts.md index 676cf8ba46..5f0afe3b1c 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-15/core-concepts.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-15/core-concepts.md @@ -26,9 +26,11 @@ these new versions and make other changes to your code, as described in the following section. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-15/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-14.md b/docs/guides/stay-up-to-date/terraform/terraform-15/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-14.md index eebfa862bb..4980e5be92 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-15/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-14.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-15/deployment-walkthrough/step-1-update-your-code-to-be-compatible-with-terraform-0-14.md @@ -23,9 +23,11 @@ If you haven’t already, you need to: as possible. +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-15/deployment-walkthrough/step-2-update-your-code-to-be-compatible-with-terraform-0-15.md b/docs/guides/stay-up-to-date/terraform/terraform-15/deployment-walkthrough/step-2-update-your-code-to-be-compatible-with-terraform-0-15.md index 49f8e759da..4abd2d717f 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-15/deployment-walkthrough/step-2-update-your-code-to-be-compatible-with-terraform-0-15.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-15/deployment-walkthrough/step-2-update-your-code-to-be-compatible-with-terraform-0-15.md @@ -9,9 +9,11 @@ compatible with Terraform 0.15 by following HashiCorp’s [Terraform 0.15 Upgrade Guide](https://www.terraform.io/upgrade-guides/0-15.html). +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-15/deployment-walkthrough/step-3-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/terraform/terraform-15/deployment-walkthrough/step-3-update-references-to-the-gruntwork-infrastructure-as-code-library.md index 4133e9081c..f986c416c3 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-15/deployment-walkthrough/step-3-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-15/deployment-walkthrough/step-3-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -7,7 +7,7 @@ sidebar_label: Update Gruntwork IaC module references In order to take advantage of the Terraform 0.15, you need to update your references to the Gruntwork Infrastructure as Code Library to use a compatible version. We (Gruntwork) have gone through all our modules in the library to test and update the code to be compatible with Terraform 0.15. As a customer, you need to update to -the proper versions of the Gruntwork library to pick up the fixes/changes that we made to be compatible. Refer to our ["Updating to new versions"](/library/stay-up-to-date/updating) guide for instructions on how to update the +the proper versions of the Gruntwork library to pick up the fixes/changes that we made to be compatible. Refer to our ["Updating to new versions"](/2.0/docs/library/guides/updating-modules/) guide for instructions on how to update the versions in your code. For the vast majority of the repos, the only change that will be necessary is a version number bump, but several repos @@ -18,7 +18,7 @@ version.** :::caution Gruntwork follows [semantic -versioning](/library/stay-up-to-date/versioning). +versioning](/2.0/docs/library/guides/versioning/). For any pre-1.0 modules, this means that version updates to the minor version are considered backwards incompatible releases for any version updates prior to 1.0.0 release. Make sure to read the release notes for the relevant modules any @@ -169,9 +169,11 @@ compatible with Terraform 0.15: +{/* +*/} diff --git a/docs/guides/stay-up-to-date/terraform/terraform-15/index.md b/docs/guides/stay-up-to-date/terraform/terraform-15/index.md index af3c618a3c..9e20836d34 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-15/index.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-15/index.md @@ -29,9 +29,11 @@ compatible with Terraform 0.15. +{/* +*/} diff --git a/docs/guides/style/golang-style-guide.md b/docs/guides/style/golang-style-guide.md index 4fdf384ac8..2a7e25e79a 100644 --- a/docs/guides/style/golang-style-guide.md +++ b/docs/guides/style/golang-style-guide.md @@ -292,9 +292,11 @@ suffix `E` return an error as the last return value; methods without `E` mark th (e.g., via calling `t.Fail()`) instead of returning an error. +{/* +*/} diff --git a/docs/guides/style/index.md b/docs/guides/style/index.md index 2912fcfdba..37851cf6ec 100644 --- a/docs/guides/style/index.md +++ b/docs/guides/style/index.md @@ -30,9 +30,11 @@ Gruntwork follows Google's shell style guide for Bash scripts. +{/* +*/} diff --git a/docs/guides/style/markdown-style-guide.md b/docs/guides/style/markdown-style-guide.md index 5fd8d3d91b..ddf42ad027 100644 --- a/docs/guides/style/markdown-style-guide.md +++ b/docs/guides/style/markdown-style-guide.md @@ -7,7 +7,7 @@ import { CCLicense } from "/src/components/CCLicense" # Markdown style guide - +*/} Much of what makes Markdown great is the ability to write plain text and get great formatted output as a result. We want to keep our source Markdown as simple and consistent as possible to make it easier for our many authors to contribute to Gruntwork documentation over time. It’s much easier to understand and make edits to a large collection of docs when they all share a consistent style. @@ -511,7 +511,7 @@ Keep in mind that… You can also provide a custom title: ```markdown -:::tip Did you know… +:::tip[Did you know…] I'll bet you didn't! @@ -814,9 +814,11 @@ This Markdown style guide is adapted from [one provided by Google](https://googl +{/* +*/} diff --git a/docs/guides/style/terraform-style-guide.md b/docs/guides/style/terraform-style-guide.md index 1890d43ea8..860fe14086 100644 --- a/docs/guides/style/terraform-style-guide.md +++ b/docs/guides/style/terraform-style-guide.md @@ -394,9 +394,11 @@ func TestECS(t *testing.T) { ``` +{/* +*/} diff --git a/docs/infrastructure-pipelines/architecture/index.md b/docs/infrastructure-pipelines/architecture/index.md index df15845262..45ed07b17d 100644 --- a/docs/infrastructure-pipelines/architecture/index.md +++ b/docs/infrastructure-pipelines/architecture/index.md @@ -1,6 +1,6 @@ # Architecture -:::info Newer Version Available +:::info[Newer Version Available] This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. ::: @@ -34,14 +34,16 @@ Workflows running in the `infrastructure-live` repository trigger workflows to r ![Gruntwork Pipelines Architecture](/img/pipelines/how-it-works/pipelines_architecture.png) -:::info Previous Version Available +:::info[Previous Version Available] You are reading documentation for Gruntwork Pipelines. The previous version of Gruntwork Pipelines is known as [ECS Deploy Runner](../../ecs-deploy-runner/overview/). ::: +{/* +*/} diff --git a/docs/infrastructure-pipelines/data-collection/index.md b/docs/infrastructure-pipelines/data-collection/index.md index 698b3dd624..db3f98d2f8 100644 --- a/docs/infrastructure-pipelines/data-collection/index.md +++ b/docs/infrastructure-pipelines/data-collection/index.md @@ -1,15 +1,17 @@ # Usage Data -:::info Newer Version Available +:::info[Newer Version Available] This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. ::: Gruntwork Pipelines captures usage data to better understand how our customers use our products. This information includes the duration of pipelines runs, the number of jobs you run, customer name, and application errors that occur during execution. If you would like to disable telemetry, please set the environment variable `PIPELINES_TELEMETRY_OPT_OUT=1` in your CI job. +{/* +*/} diff --git a/docs/infrastructure-pipelines/hello-world/github-enterprise.md b/docs/infrastructure-pipelines/hello-world/github-enterprise.md index ed7d57b728..bfa8514348 100644 --- a/docs/infrastructure-pipelines/hello-world/github-enterprise.md +++ b/docs/infrastructure-pipelines/hello-world/github-enterprise.md @@ -1,7 +1,7 @@ # Allowing Pipelines Actions in GitHub Actions -:::info Newer Version Available -This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. +:::info[Newer Version Available] +This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](/pipelines/overview/) to view documentation for the most recent version. ::: Gruntwork Pipelines uses a set of Gruntwork-built reusable Github Actions, which are available in the GitHub Marketplace. Gruntwork is a Verified Creator of GitHub Actions. @@ -43,9 +43,11 @@ Currently GitHub Actions does not support selecting specific repos outside of yo +{/* +*/} diff --git a/docs/infrastructure-pipelines/hello-world/index.md b/docs/infrastructure-pipelines/hello-world/index.md index d5a34beecb..6aef5ab27f 100644 --- a/docs/infrastructure-pipelines/hello-world/index.md +++ b/docs/infrastructure-pipelines/hello-world/index.md @@ -1,6 +1,6 @@ # Hello world -:::info Newer Version Available +:::info[Newer Version Available] This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. ::: @@ -237,9 +237,11 @@ You can extend the Pipelines model so that a single `infrastructure-pipelines` r If you are not going to continue using Pipelines after this tutorial, clean up the resources you created by running `terragrunt run-all destroy` from your account based folder. You may also delete the two repositories created in [Setting up the repositories](#setting-up-the-repositories). +{/* +*/} diff --git a/docs/infrastructure-pipelines/iac-foundations/initial-setup.md b/docs/infrastructure-pipelines/iac-foundations/initial-setup.md index 5206c77fef..1c510ee8ff 100644 --- a/docs/infrastructure-pipelines/iac-foundations/initial-setup.md +++ b/docs/infrastructure-pipelines/iac-foundations/initial-setup.md @@ -1,6 +1,6 @@ # Initial setup -:::info Newer Version Available +:::info[Newer Version Available] This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](/2.0/docs/pipelines/concepts/overview) to view documentation for the most recent version. ::: @@ -29,9 +29,11 @@ _[https://github.com/gruntwork-io/infrastructure-pipelines-template](https://git This template is only necessary if you plan on implementing [Gruntwork Pipelines](../overview/index.md). +{/* +*/} diff --git a/docs/infrastructure-pipelines/overview/actions.md b/docs/infrastructure-pipelines/overview/actions.md index 5fec193046..36d723ae02 100644 --- a/docs/infrastructure-pipelines/overview/actions.md +++ b/docs/infrastructure-pipelines/overview/actions.md @@ -1,10 +1,10 @@ # Pipelines Actions -:::info Newer Version Available -This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. +:::info[Newer Version Available] +This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](/pipelines/overview/) to view documentation for the most recent version. ::: -When a user opens a pull request, Pipelines runs a set of operations in response to the proposed [infrastructure changes](../overview/#infrastructure-change). We call these operations _pipelines actions_. Gruntwork Pipelines supports the following pipelines actions: +When a user opens a pull request, Pipelines runs a set of operations in response to the proposed [infrastructure changes](../#infrastructure-change). We call these operations _pipelines actions_. Gruntwork Pipelines supports the following pipelines actions: ## Terragrunt plan @@ -19,9 +19,11 @@ When a pull request is merged, Pipelines will automatically execute either `terr If you'd like to request a new Pipelines action, please email us at feedback@gruntwork.io. +{/* +*/} diff --git a/docs/infrastructure-pipelines/overview/deprecation.md b/docs/infrastructure-pipelines/overview/deprecation.md index 123e70ed49..0cf91af279 100644 --- a/docs/infrastructure-pipelines/overview/deprecation.md +++ b/docs/infrastructure-pipelines/overview/deprecation.md @@ -12,7 +12,7 @@ If you have any questions or need help, please reach out to us at [support@grunt While we do recommend migrating to the new version of Pipelines, we understand that this might not be trivial for all users. If you are unable to migrate to the new version of Pipelines, you can continue using the previous version of Pipelines that used the `infrastructure-pipelines` repository until you are ready to make the switch. -:::tip Don't be alarmed +:::tip[Don't be alarmed] We know it can feel overwhelming to be told that you should migrate to a new version of a tool you've been using. It's even more overwhelming when it's a tool that's critical to your infrastructure management. The good news is that the version of Pipelines that uses `infrastructure-pipelines` is a perfectly good tool for managing infrastructure changes. You should not feel like you have to migrate to the new version to mitigate a security or stability risk. @@ -142,9 +142,11 @@ Customers can also expect a much easier time reasoning about their infrastructur Gruntwork is excited to bring you this new architecture for Pipelines, and we hope that it will make your experience with managing infrastructure changes more enjoyable and productive. We're always looking for feedback on how we can improve our products, so please don't hesitate to reach out to us at [feedback@gruntwork.io](mailto:feedback@gruntwork.io). +{/* +*/} diff --git a/docs/infrastructure-pipelines/overview/index.md b/docs/infrastructure-pipelines/overview/index.md index 6ac62af1f6..c4f9e9bb44 100644 --- a/docs/infrastructure-pipelines/overview/index.md +++ b/docs/infrastructure-pipelines/overview/index.md @@ -1,6 +1,6 @@ # What is Gruntwork Pipelines? -:::info Newer Version Available +:::info[Newer Version Available] This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. ::: @@ -33,9 +33,11 @@ When a user proposes to make an infra-change by opening a pull request, we want Gruntwork is responsible for adding support for a growing library of Pipelines Actions and we will continue to add more over time. +{/* +*/} diff --git a/docs/infrastructure-pipelines/security/audit-log.md b/docs/infrastructure-pipelines/security/audit-log.md index 63a7ba60df..a1215880e4 100644 --- a/docs/infrastructure-pipelines/security/audit-log.md +++ b/docs/infrastructure-pipelines/security/audit-log.md @@ -1,7 +1,7 @@ # Audit logs -:::info Newer Version Available -This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. +:::info[Newer Version Available] +This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](/pipelines/overview/) to view documentation for the most recent version. ::: Gruntwork Pipelines provides an audit log of which GitHub user performed _what_ operation in your AWS accounts as a result of a [Pipelines Action](../overview/actions.md). @@ -72,9 +72,11 @@ Gruntwork Pipelines leverages AWS CloudTrail to log all actions taken by Pipelin Accessing CloudTrail and querying data is dependent on your organization's policies and settings. If you are a Gruntwork Account Factory customer, see the documentation on [logging](../../2.0/docs/accountfactory/architecture/logging.md) for information on how to access and query your CloudTrail data. +{/* +*/} diff --git a/docs/infrastructure-pipelines/security/branch-protection.md b/docs/infrastructure-pipelines/security/branch-protection.md index 82c6e1508f..3198bdabd2 100644 --- a/docs/infrastructure-pipelines/security/branch-protection.md +++ b/docs/infrastructure-pipelines/security/branch-protection.md @@ -1,7 +1,7 @@ # Branch Protection -:::info Newer Version Available -This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. +:::info[Newer Version Available] +This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](/pipelines/overview/) to view documentation for the most recent version. ::: Gruntwork Pipelines is designed to be used with a PR based workflow. @@ -49,9 +49,11 @@ The following is an example of the recommended settings for branch protection: - On Failure, a new GitHub issue is created describing the failure. A new PR must be created to resolve any failures. +{/* +*/} diff --git a/docs/infrastructure-pipelines/security/controls.md b/docs/infrastructure-pipelines/security/controls.md index c3bc75c46f..e953280c50 100644 --- a/docs/infrastructure-pipelines/security/controls.md +++ b/docs/infrastructure-pipelines/security/controls.md @@ -1,14 +1,14 @@ # Controls -:::info Newer Version Available -This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. +:::info[Newer Version Available] +This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](/pipelines/overview/) to view documentation for the most recent version. ::: Pipelines takes a defense in depth approach to securing workflows. This document provides an overview of the controls that Pipelines employs to ensure that only infrastructure that has been written in code and approved by a reviewer can be deployed in your AWS accounts. ## Dual-repository approach -Pipelines dual-repository approach separates infrastructure definitions from infrastructure deployment mechanisms. Pipelines requires two repositories —`infrastructure-pipelines`, where deployment workflows are defined and `infrastructure-live`, where infrastructure is defined as code. Each repository should have branch protection rules to prevent un-reviewed code from being deployed. Refer to [Recommended Settings](branch-protection#recommended-settings) in [Branch Protection](branch-protection) to learn more. +Pipelines dual-repository approach separates infrastructure definitions from infrastructure deployment mechanisms. Pipelines requires two repositories —`infrastructure-pipelines`, where deployment workflows are defined and `infrastructure-live`, where infrastructure is defined as code. Each repository should have branch protection rules to prevent un-reviewed code from being deployed. Refer to [Recommended Settings](../branch-protection/#recommended-settings) in [Branch Protection](../branch-protection/) to learn more. To control access to these repositories, we recommend creating GitHub teams. Write access to the `infrastructure-pipelines` repository should be limited to individuals that already have administrative access to your AWS accounts (see [accessing AWS resources](#accessing-aws-resources)). Read and write access to the `infrastructure-live` repository should be granted to any individual who needs to define infrastructure as code. See [repository access](repository-access.md) for more details. @@ -76,9 +76,11 @@ Access to AWS is only available to workflows running on `main` in the `infrastru As highlighted in [dual-repository approach](#dual-repository-approach), because the workflows in `infrastructure-pipelines` can get temporary access to access resources in AWS, write access to this repository should be limited to a trusted set of administrators who likely already have administrative privileges in AWS. +{/* +*/} diff --git a/docs/infrastructure-pipelines/security/machine-users.md b/docs/infrastructure-pipelines/security/machine-users.md index 4998cf4d1e..b747d70b40 100644 --- a/docs/infrastructure-pipelines/security/machine-users.md +++ b/docs/infrastructure-pipelines/security/machine-users.md @@ -3,8 +3,8 @@ import TabItem from '@theme/TabItem'; # Machine users -:::info Newer Version Available -This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. +:::info[Newer Version Available] +This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](/pipelines/overview/) to view documentation for the most recent version. ::: Gruntwork recommends using CI users in Gruntwork Pipelines, separate from human users in your organization. Using a CI user ensures that a workflow won't break due to an employee leaving your company. Further, using CI users allow you to apply granular permissions that may normally be too restrictive for a normal employee to do their daily work. @@ -230,9 +230,11 @@ For additional information on creating and using Github Actions Repository secre +{/* +*/} diff --git a/docs/infrastructure-pipelines/security/multi-account.md b/docs/infrastructure-pipelines/security/multi-account.md index fc602b1216..faf0a8bf28 100644 --- a/docs/infrastructure-pipelines/security/multi-account.md +++ b/docs/infrastructure-pipelines/security/multi-account.md @@ -1,7 +1,7 @@ # Multiple Infrastructure-Live Repos -:::info Newer Version Available -This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. +:::info[Newer Version Available] +This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](/pipelines/overview/) to view documentation for the most recent version. ::: We recommend using a single `infrastructure-live` git repository for managing your organization's infrastructure. @@ -19,11 +19,11 @@ so think carefully about your specific use case before making the decision. ## Create Additional Repos New `infrastructure-live` repositories can be created using the same process described in the -[Hello World](../hello-world#setting-up-the-repositories) documentation. +[Hello World](../../hello-world/#setting-up-the-repositories) documentation. :::info Once the repository is created, you'll need to set up machine user access using either the existing machine user and `PIPELINES_DISPATCH` PAT token, -or one created specifically for this purpose. See [Machine Users](machine-users) for more information. +or one created specifically for this purpose. See [Machine Users](../machine-users/) for more information. ::: No special configuration is required for the new `infrastructure-live` repository, @@ -34,7 +34,7 @@ to the shared `infrastructure-pipelines` repository. :::warning Once a repository is enabled for pipelines, any code pushed to the `main` branch of that repository will be eligible to access your -AWS account using OIDC. Ensure you have the [recommended settings](branch-protection) for branch protection configured before adding the new +AWS account using OIDC. Ensure you have the [recommended settings](../branch-protection/) for branch protection configured before adding the new repository to the allowlist. ::: @@ -58,9 +58,11 @@ The `INFRA_LIVE_ACCESS_TOKEN` available to the `infrastructure-pipelines` reposi ::: +{/* +*/} diff --git a/docs/infrastructure-pipelines/security/repository-access.md b/docs/infrastructure-pipelines/security/repository-access.md index c05f0496d4..1f6f0d5f6e 100644 --- a/docs/infrastructure-pipelines/security/repository-access.md +++ b/docs/infrastructure-pipelines/security/repository-access.md @@ -1,7 +1,7 @@ # Repository Access -:::info Newer Version Available -This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](../../pipelines/overview/) to view documentation for the most recent version. +:::info[Newer Version Available] +This documentation pertains to an old version of Gruntwork Pipelines which used the `infrastructure-pipelines` repository. [Click here](/pipelines/overview/) to view documentation for the most recent version. ::: Gruntwork Pipelines grants permissions by defining three [GitHub Teams](https://docs.github.com/en/organizations/organizing-members-into-teams/about-teams), which should map to three separate personas in your organization. Each team and its permissions are designed to apply the [_principle of least privilege_](https://en.wikipedia.org/wiki/Principle_of_least_privilege) to each individual (or machine user) in your organization for them to be able to perform changes to your infrastructure. @@ -13,9 +13,11 @@ The diagram below visually illustrates the above teams: ![Gruntwork Pipelines Permissions](/img/pipelines/security/github_teams.png) +{/* +*/} diff --git a/docs/library/stay-up-to-date/updating.md b/docs/library/stay-up-to-date/updating.md deleted file mode 100644 index 074f9499ac..0000000000 --- a/docs/library/stay-up-to-date/updating.md +++ /dev/null @@ -1,3 +0,0 @@ -import {Redirect} from '@docusaurus/router'; - - diff --git a/docs/library/stay-up-to-date/versioning.md b/docs/library/stay-up-to-date/versioning.md deleted file mode 100644 index 0aa056f113..0000000000 --- a/docs/library/stay-up-to-date/versioning.md +++ /dev/null @@ -1,3 +0,0 @@ -import {Redirect} from '@docusaurus/router'; - - diff --git a/docs/products.md b/docs/products.md index f3c8b998fa..7a1ccebbec 100644 --- a/docs/products.md +++ b/docs/products.md @@ -39,9 +39,11 @@ Create and manage AWS accounts with best-practice baselines, security configurat +{/* +*/} diff --git a/docs/refarch/access/how-to-auth-CLI/index.md b/docs/refarch/access/how-to-auth-CLI/index.md index 74dd7ad5da..b32658bb80 100644 --- a/docs/refarch/access/how-to-auth-CLI/index.md +++ b/docs/refarch/access/how-to-auth-CLI/index.md @@ -55,9 +55,11 @@ you should expect to see the following output: ``` +{/* +*/} diff --git a/docs/refarch/access/how-to-auth-aws-web-console/index.md b/docs/refarch/access/how-to-auth-aws-web-console/index.md index e8cb5522e5..8dac72a834 100644 --- a/docs/refarch/access/how-to-auth-aws-web-console/index.md +++ b/docs/refarch/access/how-to-auth-aws-web-console/index.md @@ -26,9 +26,11 @@ Not all of the default roles referenced in the `cross-account-iam-roles` module ::: +{/* +*/} diff --git a/docs/refarch/access/how-to-auth-ec2/index.md b/docs/refarch/access/how-to-auth-ec2/index.md index 6decb2f4aa..323d916de6 100644 --- a/docs/refarch/access/how-to-auth-ec2/index.md +++ b/docs/refarch/access/how-to-auth-ec2/index.md @@ -63,9 +63,11 @@ When you launch an EC2 Instance in AWS, you can specify an EC2 Key Pair that can As part of the Reference Architecture deployment, Gruntwork will create EC2 Key Pairs and put the private keys into AWS Secrets Manager. These keys are there only for emergency / backup use: e.g., if there's a bug in `ssh-grunt` that prevents you from accessing your EC2 instances. We recommend only giving a handful of trusted admins access to these Key Pairs. +{/* +*/} diff --git a/docs/refarch/access/how-to-auth-vpn/index.md b/docs/refarch/access/how-to-auth-vpn/index.md index 0535cfe201..60a59c5f90 100644 --- a/docs/refarch/access/how-to-auth-vpn/index.md +++ b/docs/refarch/access/how-to-auth-vpn/index.md @@ -43,9 +43,11 @@ To connect to an OpenVPN server, you need an OpenVPN configuration file, which i To connect to an OpenVPN server in one of your app accounts (Dev, Stage, Prod), click the "Connect" button next to your configuration file in the OpenVPN client. After a few seconds, you should be connected. You will now be able to access all the resources within the AWS network (e.g., SSH to EC2 instances in private subnets) as if you were "in" the VPC itself. +{/* +*/} diff --git a/docs/refarch/access/setup-auth/index.md b/docs/refarch/access/setup-auth/index.md index ab1f94aafe..3172840575 100644 --- a/docs/refarch/access/setup-auth/index.md +++ b/docs/refarch/access/setup-auth/index.md @@ -123,9 +123,11 @@ To deploy this new code and create the new IAM Users, you will need to: ::: +{/* +*/} diff --git a/docs/refarch/configuration/index.md b/docs/refarch/configuration/index.md index d5c79f088e..d52dd1f17c 100644 --- a/docs/refarch/configuration/index.md +++ b/docs/refarch/configuration/index.md @@ -37,7 +37,7 @@ There is a bootstrap script in your `infrastructure-live` repository that will a The gruntwork CLI includes a [wizard](/refarch/configuration/run-the-wizard.md) that automates all of the steps to get the required data from you. We strongly recommended using the wizard for the majority of users. -:::info Manual Configuration +:::info[Manual Configuration] If you are required to manually provision AWS accounts, domain names, or otherwise, the Gruntwork CLI has utilities to [manually bootstrap](https://github.com/gruntwork-io/gruntwork#bootstrap-manually) the required resources. This approach is only recommended for advanced users after consulting with Gruntwork. After all data has been generated manually, you will need to fill out the `reference-architecture-form.yml` manually. ::: @@ -47,9 +47,11 @@ Now that you understand the configuration and delivery process at a high level, +{/* +*/} diff --git a/docs/refarch/configuration/install-required-tools.md b/docs/refarch/configuration/install-required-tools.md index 0abaa5b331..e02a5c9e56 100644 --- a/docs/refarch/configuration/install-required-tools.md +++ b/docs/refarch/configuration/install-required-tools.md @@ -30,9 +30,11 @@ If you prefer to install your tools manually, see the following sections on inst +{/* +*/} diff --git a/docs/refarch/configuration/preflight-checks.md b/docs/refarch/configuration/preflight-checks.md index f5e3d2e5dc..3fcd79e964 100644 --- a/docs/refarch/configuration/preflight-checks.md +++ b/docs/refarch/configuration/preflight-checks.md @@ -38,9 +38,11 @@ any additional information or if we need you to perform any remediation steps to Once your deployment completes, you’ll receive an automated email with next steps and a link to your Quick Start guide that has been written to your `infrastructure-live` repository. +{/* +*/} diff --git a/docs/refarch/configuration/run-the-wizard.md b/docs/refarch/configuration/run-the-wizard.md index 0892b63a46..c7813365f4 100644 --- a/docs/refarch/configuration/run-the-wizard.md +++ b/docs/refarch/configuration/run-the-wizard.md @@ -19,9 +19,11 @@ To commence the wizard, first authenticate to AWS on the command line, then run If you need to stop the running the wizard at any time, or if there is an error, the next time you run the wizard it will restart at the last step it stopped on. +{/* +*/} diff --git a/docs/refarch/index.md b/docs/refarch/index.md index 1c055153d5..6906c3b767 100644 --- a/docs/refarch/index.md +++ b/docs/refarch/index.md @@ -1,6 +1,6 @@ # AWS Platform Architecture (Legacy) -:::note Legacy Product +:::note[Legacy Product] The Gruntwork Reference Architecture has been superseded by the **AWS Platform Architecture** component of [Gruntwork AWS Accelerator](/2.0/docs/overview/concepts/gruntworkplatform). New customers should use Gruntwork AWS Accelerator for the latest best practices and features. @@ -21,9 +21,11 @@ Our [sample application](https://github.com/gruntwork-io/aws-sample-app) is buil [Gruntwork Pipelines](/2.0/docs/pipelines/concepts/overview) makes the process of deploying infrastructure similar to how developers often deploy code. It is a code framework and approach that enables the customer to use your preferred CI tool to set up an end-to-end pipeline for infrastructure code. +{/* +*/} diff --git a/docs/refarch/support/getting-help/index.md b/docs/refarch/support/getting-help/index.md index 2fd9aec1a1..f7c7871a2e 100644 --- a/docs/refarch/support/getting-help/index.md +++ b/docs/refarch/support/getting-help/index.md @@ -1,9 +1,11 @@ # Link: support +{/* +*/} diff --git a/docs/refarch/usage/maintain-your-refarch/adding-new-account.md b/docs/refarch/usage/maintain-your-refarch/adding-new-account.md index 6d88fae940..fea8ca47d4 100644 --- a/docs/refarch/usage/maintain-your-refarch/adding-new-account.md +++ b/docs/refarch/usage/maintain-your-refarch/adding-new-account.md @@ -291,9 +291,11 @@ At this point, the ECS Deploy Runner is provisioned in the new account, and you to provision new infrastructure in the account. +{/* +*/} diff --git a/docs/refarch/usage/maintain-your-refarch/deploying-your-apps.md b/docs/refarch/usage/maintain-your-refarch/deploying-your-apps.md index 539fcf5d70..d7df657d59 100644 --- a/docs/refarch/usage/maintain-your-refarch/deploying-your-apps.md +++ b/docs/refarch/usage/maintain-your-refarch/deploying-your-apps.md @@ -480,9 +480,11 @@ are timing out or returning wrong content. +{/* +*/} diff --git a/docs/refarch/usage/maintain-your-refarch/extending.md b/docs/refarch/usage/maintain-your-refarch/extending.md index 02a59df3f4..c10014a8b2 100644 --- a/docs/refarch/usage/maintain-your-refarch/extending.md +++ b/docs/refarch/usage/maintain-your-refarch/extending.md @@ -16,16 +16,18 @@ Gruntwork provides a [_catalog_ of services](/library/reference/) that can be ad ## Composing your own services -If Gruntwork doesn't already have the service you are looking you may be able to use our [modules](../../../2.0/docs/library/concepts/modules) and combine them into your own bespoke new services to accelerate your development of the functionality you need. +If Gruntwork doesn't already have the service you are looking you may be able to use our [modules](/2.0/docs/library/concepts/modules/) and combine them into your own bespoke new services to accelerate your development of the functionality you need. ## Build your own modules If Gruntwork doesn't have existing modules for the AWS services that you are trying to deploy, you can always [create and deploy your own modules](../../../2.0/docs/library/tutorials/deploying-your-first-gruntwork-module.md), compose them into your on bespoke services and add them to your Reference Architecture. +{/* +*/} diff --git a/docs/refarch/usage/maintain-your-refarch/monitoring.md b/docs/refarch/usage/maintain-your-refarch/monitoring.md index fb046cda3c..02dd0c36c2 100644 --- a/docs/refarch/usage/maintain-your-refarch/monitoring.md +++ b/docs/refarch/usage/maintain-your-refarch/monitoring.md @@ -47,9 +47,11 @@ each server to see a log file, and worrying about losing those log files if the your servers in near-real-time. +{/* +*/} diff --git a/docs/refarch/usage/maintain-your-refarch/staying-up-to-date.md b/docs/refarch/usage/maintain-your-refarch/staying-up-to-date.md index d51f580696..4dec4d02f3 100644 --- a/docs/refarch/usage/maintain-your-refarch/staying-up-to-date.md +++ b/docs/refarch/usage/maintain-your-refarch/staying-up-to-date.md @@ -29,9 +29,11 @@ The test pipeline's workhorse, the ECS Deploy Runner, includes a Terraform versi ::: +{/* +*/} diff --git a/docs/refarch/usage/maintain-your-refarch/undeploying.md b/docs/refarch/usage/maintain-your-refarch/undeploying.md index e0cdda8626..ff37540f2e 100644 --- a/docs/refarch/usage/maintain-your-refarch/undeploying.md +++ b/docs/refarch/usage/maintain-your-refarch/undeploying.md @@ -204,9 +204,11 @@ This usually happens when the module already had `destroy` called on it previous case, your best bet is to skip over that module with the `--terragrunt-exclude-dir` (more details: [here](https://terragrunt.gruntwork.io/docs/reference/cli-options/#terragrunt-exclude-dir)). +{/* +*/} diff --git a/docs/refarch/usage/pipelines-integration/index.md b/docs/refarch/usage/pipelines-integration/index.md index 23a161afe8..0c594422e7 100644 --- a/docs/refarch/usage/pipelines-integration/index.md +++ b/docs/refarch/usage/pipelines-integration/index.md @@ -98,9 +98,11 @@ a CircleCI environment variable. | SLACK_DEFAULT_CHANNEL | If no channel ID is specified, the app will attempt to post here. | +{/* +*/} diff --git a/docs/refarch/whats-this/services.md b/docs/refarch/whats-this/services.md index ef83022ef1..6d47773849 100644 --- a/docs/refarch/whats-this/services.md +++ b/docs/refarch/whats-this/services.md @@ -1,8 +1,10 @@ +{/* +*/} diff --git a/docs/refarch/whats-this/understanding-the-deployment-process.md b/docs/refarch/whats-this/understanding-the-deployment-process.md index 9ff9a1336b..5747469a46 100644 --- a/docs/refarch/whats-this/understanding-the-deployment-process.md +++ b/docs/refarch/whats-this/understanding-the-deployment-process.md @@ -34,9 +34,11 @@ The adoption phase is primarily your responsibility. - From this point forward, we expect you to self-serve, with assistance from Gruntwork Support, as needed +{/* +*/} diff --git a/docs/refarch/whats-this/what-is-a-reference-architecture.md b/docs/refarch/whats-this/what-is-a-reference-architecture.md index dd53d6921c..b2667fc6d6 100644 --- a/docs/refarch/whats-this/what-is-a-reference-architecture.md +++ b/docs/refarch/whats-this/what-is-a-reference-architecture.md @@ -1,6 +1,6 @@ # What is a Reference Architecture? -:::note Legacy Product +:::note[Legacy Product] The Gruntwork Reference Architecture has been superseded by the **AWS Platform Architecture** component of [Gruntwork AWS Accelerator](/2.0/docs/overview/concepts/gruntworkplatform). New customers should use Gruntwork AWS Accelerator for the latest best practices and features. @@ -29,9 +29,11 @@ The Reference Architecture has three main components — Gruntwork AWS Account F Our [sample application](https://github.com/gruntwork-io/aws-sample-app) is built with JavaScript, Node.js, and Express.js, following [Twelve-Factor App](https://12factor.net/) practices. It consists of a load balancer, a front end, a backend, a cache, and a database. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-asg/asg-instance-refresh/asg-instance-refresh.md b/docs/reference/modules/terraform-aws-asg/asg-instance-refresh/asg-instance-refresh.md index bf90572318..0ecc242b00 100644 --- a/docs/reference/modules/terraform-aws-asg/asg-instance-refresh/asg-instance-refresh.md +++ b/docs/reference/modules/terraform-aws-asg/asg-instance-refresh/asg-instance-refresh.md @@ -648,6 +648,7 @@ A maximum duration that Terraform should wait for the EC2 Instances to be health
+{/* +*/} diff --git a/docs/reference/modules/terraform-aws-asg/asg-rolling-deploy/asg-rolling-deploy.md b/docs/reference/modules/terraform-aws-asg/asg-rolling-deploy/asg-rolling-deploy.md index 6af3f35d65..0630ebaa87 100644 --- a/docs/reference/modules/terraform-aws-asg/asg-rolling-deploy/asg-rolling-deploy.md +++ b/docs/reference/modules/terraform-aws-asg/asg-rolling-deploy/asg-rolling-deploy.md @@ -726,6 +726,7 @@ A maximum duration that Terraform should wait for the EC2 Instances to be health +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-asg/server-group/server-group.md b/docs/reference/modules/terraform-aws-asg/server-group/server-group.md index 1e90985d67..a5c825dcb5 100644 --- a/docs/reference/modules/terraform-aws-asg/server-group/server-group.md +++ b/docs/reference/modules/terraform-aws-asg/server-group/server-group.md @@ -1442,6 +1442,7 @@ Other modules can depend on this variable to ensure those modules only deploy af +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-cache/elastic-cache/elastic-cache.md b/docs/reference/modules/terraform-aws-cache/elastic-cache/elastic-cache.md index aead18b41f..e57b8acbe4 100644 --- a/docs/reference/modules/terraform-aws-cache/elastic-cache/elastic-cache.md +++ b/docs/reference/modules/terraform-aws-cache/elastic-cache/elastic-cache.md @@ -525,6 +525,7 @@ A set of tags to set for the ElastiCache Cluster. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-cache/memcached/memcached.md b/docs/reference/modules/terraform-aws-cache/memcached/memcached.md index 1d60e9d434..b172a9649e 100644 --- a/docs/reference/modules/terraform-aws-cache/memcached/memcached.md +++ b/docs/reference/modules/terraform-aws-cache/memcached/memcached.md @@ -397,6 +397,7 @@ A set of tags to set for the ElastiCache Replication Group. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-cache/redis/redis.md b/docs/reference/modules/terraform-aws-cache/redis/redis.md index 24b4682b28..0ffa61c9ae 100644 --- a/docs/reference/modules/terraform-aws-cache/redis/redis.md +++ b/docs/reference/modules/terraform-aws-cache/redis/redis.md @@ -1246,6 +1246,7 @@ This is a list of user IDs that should be added to the group defined in the 'us +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-cache/redis_copy_snapshot/redis_copy_snapshot.md b/docs/reference/modules/terraform-aws-cache/redis_copy_snapshot/redis_copy_snapshot.md index 5df3231290..9e892bbc65 100644 --- a/docs/reference/modules/terraform-aws-cache/redis_copy_snapshot/redis_copy_snapshot.md +++ b/docs/reference/modules/terraform-aws-cache/redis_copy_snapshot/redis_copy_snapshot.md @@ -213,6 +213,7 @@ A name for the exported snapshot copy. ElastiCache does not permit overwriting a +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-cache/valkey/valkey.md b/docs/reference/modules/terraform-aws-cache/valkey/valkey.md index a20953410e..dc412f423c 100644 --- a/docs/reference/modules/terraform-aws-cache/valkey/valkey.md +++ b/docs/reference/modules/terraform-aws-cache/valkey/valkey.md @@ -1216,6 +1216,7 @@ Version number of valkey to use (e.g. 7.2). +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/aws-helpers/aws-helpers.md b/docs/reference/modules/terraform-aws-ci/aws-helpers/aws-helpers.md index 0663cd2063..557f021543 100644 --- a/docs/reference/modules/terraform-aws-ci/aws-helpers/aws-helpers.md +++ b/docs/reference/modules/terraform-aws-ci/aws-helpers/aws-helpers.md @@ -41,6 +41,7 @@ dependencies: - gruntwork-install --module-name "aws-helpers" --repo "https://github.com/gruntwork-io/terraform-aws-ci" --tag "v0.0.1" ``` +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/build-helpers/build-helpers.md b/docs/reference/modules/terraform-aws-ci/build-helpers/build-helpers.md index 90426ffeb5..37f41cfbca 100644 --- a/docs/reference/modules/terraform-aws-ci/build-helpers/build-helpers.md +++ b/docs/reference/modules/terraform-aws-ci/build-helpers/build-helpers.md @@ -183,6 +183,7 @@ Note that the following conditions must be true in order to use this feature: * Build is for an AMI (builder type `amazon-ebs`). * Builder is configured to tag the AMIs (`tags` is set). +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/check-url/check-url.md b/docs/reference/modules/terraform-aws-ci/check-url/check-url.md index 2ec30dce7d..a4f86ee73f 100644 --- a/docs/reference/modules/terraform-aws-ci/check-url/check-url.md +++ b/docs/reference/modules/terraform-aws-ci/check-url/check-url.md @@ -77,6 +77,7 @@ version = 2.0.0 Success! Got expected status code '200' and text '2.0.0' from URL http://www.my-company.com/version. ``` +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/circleci-helpers/circleci-helpers.md b/docs/reference/modules/terraform-aws-ci/circleci-helpers/circleci-helpers.md index 58f87e7b0a..95ea0825d2 100644 --- a/docs/reference/modules/terraform-aws-ci/circleci-helpers/circleci-helpers.md +++ b/docs/reference/modules/terraform-aws-ci/circleci-helpers/circleci-helpers.md @@ -63,6 +63,7 @@ dependencies: - place-repo-in-gopath ``` +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/ec2-backup/ec2-backup.md b/docs/reference/modules/terraform-aws-ci/ec2-backup/ec2-backup.md index 39a5e217dc..d5e1300e5c 100644 --- a/docs/reference/modules/terraform-aws-ci/ec2-backup/ec2-backup.md +++ b/docs/reference/modules/terraform-aws-ci/ec2-backup/ec2-backup.md @@ -342,6 +342,7 @@ When true, all IAM policies will be managed as dedicated policies rather than in +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/ecs-deploy-runner-invoke-iam-policy/ecs-deploy-runner-invoke-iam-policy.md b/docs/reference/modules/terraform-aws-ci/ecs-deploy-runner-invoke-iam-policy/ecs-deploy-runner-invoke-iam-policy.md index fa1547d613..59b637a3a6 100644 --- a/docs/reference/modules/terraform-aws-ci/ecs-deploy-runner-invoke-iam-policy/ecs-deploy-runner-invoke-iam-policy.md +++ b/docs/reference/modules/terraform-aws-ci/ecs-deploy-runner-invoke-iam-policy/ecs-deploy-runner-invoke-iam-policy.md @@ -207,6 +207,7 @@ The name of the IAM policy created with the permissions for invoking the ECS Dep +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/ecs-deploy-runner-standard-configuration/ecs-deploy-runner-standard-configuration.md b/docs/reference/modules/terraform-aws-ci/ecs-deploy-runner-standard-configuration/ecs-deploy-runner-standard-configuration.md index 7b3fa4153d..e52d739b1f 100644 --- a/docs/reference/modules/terraform-aws-ci/ecs-deploy-runner-standard-configuration/ecs-deploy-runner-standard-configuration.md +++ b/docs/reference/modules/terraform-aws-ci/ecs-deploy-runner-standard-configuration/ecs-deploy-runner-standard-configuration.md @@ -950,6 +950,7 @@ Configuration map for the ecs-deploy-runner module that can be passed straight i +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/ecs-deploy-runner/ecs-deploy-runner.md b/docs/reference/modules/terraform-aws-ci/ecs-deploy-runner/ecs-deploy-runner.md index 51bf5a2f8a..d7571e30bd 100644 --- a/docs/reference/modules/terraform-aws-ci/ecs-deploy-runner/ecs-deploy-runner.md +++ b/docs/reference/modules/terraform-aws-ci/ecs-deploy-runner/ecs-deploy-runner.md @@ -1316,6 +1316,7 @@ Security Group ID of the ECS task +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/git-helpers/git-helpers.md b/docs/reference/modules/terraform-aws-ci/git-helpers/git-helpers.md index 3f27000445..741ce7471f 100644 --- a/docs/reference/modules/terraform-aws-ci/git-helpers/git-helpers.md +++ b/docs/reference/modules/terraform-aws-ci/git-helpers/git-helpers.md @@ -68,6 +68,7 @@ The main options to pass to `git-add-commit-push` are: * `--path`: The path to add, commit, and push to Git. Required. May be specified more than once. * `--message`: The commit message. Required. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/github-release-helpers/github-release-helpers.md b/docs/reference/modules/terraform-aws-ci/github-release-helpers/github-release-helpers.md index c4a8554af8..4fcec17773 100644 --- a/docs/reference/modules/terraform-aws-ci/github-release-helpers/github-release-helpers.md +++ b/docs/reference/modules/terraform-aws-ci/github-release-helpers/github-release-helpers.md @@ -80,6 +80,7 @@ sign-files --source-dir bin --out-dir release --name terragrunt-iac-engine-opent create-release --repo-owner gruntwork-io --repo-name terragrunt-engine-opentofu --rc-version 1.0.0-rc1 --version 1.0.0 --release-dir release ``` +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/gruntwork-module-circleci-helpers/gruntwork-module-circleci-helpers.md b/docs/reference/modules/terraform-aws-ci/gruntwork-module-circleci-helpers/gruntwork-module-circleci-helpers.md index f820ce7d1c..a5537a8c04 100644 --- a/docs/reference/modules/terraform-aws-ci/gruntwork-module-circleci-helpers/gruntwork-module-circleci-helpers.md +++ b/docs/reference/modules/terraform-aws-ci/gruntwork-module-circleci-helpers/gruntwork-module-circleci-helpers.md @@ -188,6 +188,7 @@ If you run `build-go-binaries` with no options, it will build the source code in `bin` folder and pick reasonable defaults for all the other values using [CircleCI environment variables](https://circleci.com/docs/environment-variables/). +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/iam-policies/iam-policies.md b/docs/reference/modules/terraform-aws-ci/iam-policies/iam-policies.md index 34206a305c..096a8e4bb4 100644 --- a/docs/reference/modules/terraform-aws-ci/iam-policies/iam-policies.md +++ b/docs/reference/modules/terraform-aws-ci/iam-policies/iam-policies.md @@ -63,6 +63,7 @@ Policy every time we add a new ECS Service. Some modules are configurable to support whatever level of +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/infrastructure-deploy-script/infrastructure-deploy-script.md b/docs/reference/modules/terraform-aws-ci/infrastructure-deploy-script/infrastructure-deploy-script.md index a4c14a766e..4ff0cb03d8 100644 --- a/docs/reference/modules/terraform-aws-ci/infrastructure-deploy-script/infrastructure-deploy-script.md +++ b/docs/reference/modules/terraform-aws-ci/infrastructure-deploy-script/infrastructure-deploy-script.md @@ -57,6 +57,7 @@ If you just want to try this repo out for experimenting and learning, check out * [What are the system requirements for the deploy script?](https://github.com/gruntwork-io/terraform-aws-ci/tree/v1.3.0/modules/infrastructure-deploy-script/core-concepts.md#system-requirements) +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/infrastructure-deployer/infrastructure-deployer.md b/docs/reference/modules/terraform-aws-ci/infrastructure-deployer/infrastructure-deployer.md index 21384a11f4..45352cfc08 100644 --- a/docs/reference/modules/terraform-aws-ci/infrastructure-deployer/infrastructure-deployer.md +++ b/docs/reference/modules/terraform-aws-ci/infrastructure-deployer/infrastructure-deployer.md @@ -77,6 +77,7 @@ If you just want to try this repo out for experimenting and learning, check out * [How do I invoke the ECS deploy runner?](https://github.com/gruntwork-io/terraform-aws-ci/tree/v1.3.0/modules/infrastructure-deployer/core-concepts.md#how-do-i-invoke-the-ecs-deploy-runner) +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/install-jenkins/install-jenkins.md b/docs/reference/modules/terraform-aws-ci/install-jenkins/install-jenkins.md index 2fd1aa4998..3df57800c9 100644 --- a/docs/reference/modules/terraform-aws-ci/install-jenkins/install-jenkins.md +++ b/docs/reference/modules/terraform-aws-ci/install-jenkins/install-jenkins.md @@ -70,6 +70,7 @@ typically do two things in [User Data](https://docs.aws.amazon.com/AWSEC2/latest Check out the [jenkins example](https://github.com/gruntwork-io/terraform-aws-ci/tree/v1.3.0/examples/jenkins) for an example of such a User Data script. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/jenkins-server/jenkins-server.md b/docs/reference/modules/terraform-aws-ci/jenkins-server/jenkins-server.md index 01a5e0c19f..173c00a9b8 100644 --- a/docs/reference/modules/terraform-aws-ci/jenkins-server/jenkins-server.md +++ b/docs/reference/modules/terraform-aws-ci/jenkins-server/jenkins-server.md @@ -1249,6 +1249,7 @@ A maximum duration to wait for each server to be healthy before timing out (e.g. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/kubernetes-circleci-helpers/kubernetes-circleci-helpers.md b/docs/reference/modules/terraform-aws-ci/kubernetes-circleci-helpers/kubernetes-circleci-helpers.md index f0682dab86..68abef4771 100644 --- a/docs/reference/modules/terraform-aws-ci/kubernetes-circleci-helpers/kubernetes-circleci-helpers.md +++ b/docs/reference/modules/terraform-aws-ci/kubernetes-circleci-helpers/kubernetes-circleci-helpers.md @@ -95,6 +95,7 @@ job: command: setup-minikube ``` +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/monorepo-helpers/monorepo-helpers.md b/docs/reference/modules/terraform-aws-ci/monorepo-helpers/monorepo-helpers.md index 6d5ba60031..9481d682ca 100644 --- a/docs/reference/modules/terraform-aws-ci/monorepo-helpers/monorepo-helpers.md +++ b/docs/reference/modules/terraform-aws-ci/monorepo-helpers/monorepo-helpers.md @@ -73,6 +73,7 @@ If you just want to try this module out for experimenting and learning, check ou * [Adding a new file that has no tests to a repo with validate-monorepo-test-mappings](https://github.com/gruntwork-io/terraform-aws-ci/tree/v1.3.0/modules/monorepo-helpers/core-concepts.md#adding-a-new-file-that-has-no-tests-to-a-repo-with-validate-monorepo-test-mappings) +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/sign-binary-helpers/sign-binary-helpers.md b/docs/reference/modules/terraform-aws-ci/sign-binary-helpers/sign-binary-helpers.md index e144c0bebc..f5bb6cc12a 100644 --- a/docs/reference/modules/terraform-aws-ci/sign-binary-helpers/sign-binary-helpers.md +++ b/docs/reference/modules/terraform-aws-ci/sign-binary-helpers/sign-binary-helpers.md @@ -146,6 +146,7 @@ References: * https://github.com/mitchellh/gon * https://localazy.com/blog/how-to-automatically-sign-macos-apps-using-github-actions +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ci/terraform-helpers/terraform-helpers.md b/docs/reference/modules/terraform-aws-ci/terraform-helpers/terraform-helpers.md index a92225f44b..5a89864f9b 100644 --- a/docs/reference/modules/terraform-aws-ci/terraform-helpers/terraform-helpers.md +++ b/docs/reference/modules/terraform-aws-ci/terraform-helpers/terraform-helpers.md @@ -337,6 +337,7 @@ In your infrastructure pipelines, you should use `--exclude-deleted` to filter o and `apply` actions so that Terraform/Terragrunt can run. If you wish to implement destroy workflows, you can use the `--include-deleted-only` parameter to setup a separate pipeline for handling `destroy` actions. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/control-tower-account-factory-async/control-tower-account-factory-async.md b/docs/reference/modules/terraform-aws-control-tower/control-tower-account-factory-async/control-tower-account-factory-async.md index fac998ba90..dae3299acc 100644 --- a/docs/reference/modules/terraform-aws-control-tower/control-tower-account-factory-async/control-tower-account-factory-async.md +++ b/docs/reference/modules/terraform-aws-control-tower/control-tower-account-factory-async/control-tower-account-factory-async.md @@ -571,6 +571,7 @@ The URL of the AWS SSO login page for this account +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/control-tower-account-factory/control-tower-account-factory.md b/docs/reference/modules/terraform-aws-control-tower/control-tower-account-factory/control-tower-account-factory.md index 1545b36e20..a439d03155 100644 --- a/docs/reference/modules/terraform-aws-control-tower/control-tower-account-factory/control-tower-account-factory.md +++ b/docs/reference/modules/terraform-aws-control-tower/control-tower-account-factory/control-tower-account-factory.md @@ -617,6 +617,7 @@ The URL of the AWS SSO login page for this account +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/control-tower-account-tagger/control-tower-account-tagger.md b/docs/reference/modules/terraform-aws-control-tower/control-tower-account-tagger/control-tower-account-tagger.md index 8d4834bb5e..1e60e6d190 100644 --- a/docs/reference/modules/terraform-aws-control-tower/control-tower-account-tagger/control-tower-account-tagger.md +++ b/docs/reference/modules/terraform-aws-control-tower/control-tower-account-tagger/control-tower-account-tagger.md @@ -140,6 +140,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/control-tower-app-account-baseline/control-tower-app-account-baseline.md b/docs/reference/modules/terraform-aws-control-tower/control-tower-app-account-baseline/control-tower-app-account-baseline.md index 339215177c..bb61ebab4b 100644 --- a/docs/reference/modules/terraform-aws-control-tower/control-tower-app-account-baseline/control-tower-app-account-baseline.md +++ b/docs/reference/modules/terraform-aws-control-tower/control-tower-app-account-baseline/control-tower-app-account-baseline.md @@ -3064,6 +3064,7 @@ A map of ARNs of the service linked roles created from +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/control-tower-controls/control-tower-controls.md b/docs/reference/modules/terraform-aws-control-tower/control-tower-controls/control-tower-controls.md index 0813d00223..178d51eb2a 100644 --- a/docs/reference/modules/terraform-aws-control-tower/control-tower-controls/control-tower-controls.md +++ b/docs/reference/modules/terraform-aws-control-tower/control-tower-controls/control-tower-controls.md @@ -104,6 +104,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/control-tower-execution-role/control-tower-execution-role.md b/docs/reference/modules/terraform-aws-control-tower/control-tower-execution-role/control-tower-execution-role.md index 44d4815bdc..cc896fa551 100644 --- a/docs/reference/modules/terraform-aws-control-tower/control-tower-execution-role/control-tower-execution-role.md +++ b/docs/reference/modules/terraform-aws-control-tower/control-tower-execution-role/control-tower-execution-role.md @@ -149,6 +149,7 @@ The ARN of the Control Tower Execution Role +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/control-tower-landing-zone/control-tower-landing-zone.md b/docs/reference/modules/terraform-aws-control-tower/control-tower-landing-zone/control-tower-landing-zone.md index 317b1b8574..6c00318cac 100644 --- a/docs/reference/modules/terraform-aws-control-tower/control-tower-landing-zone/control-tower-landing-zone.md +++ b/docs/reference/modules/terraform-aws-control-tower/control-tower-landing-zone/control-tower-landing-zone.md @@ -541,6 +541,7 @@ The amount of time allowed for the update operation to take before being conside +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/control-tower-multi-account-factory-async/control-tower-multi-account-factory-async.md b/docs/reference/modules/terraform-aws-control-tower/control-tower-multi-account-factory-async/control-tower-multi-account-factory-async.md index 2933e9e702..b1a91bd794 100644 --- a/docs/reference/modules/terraform-aws-control-tower/control-tower-multi-account-factory-async/control-tower-multi-account-factory-async.md +++ b/docs/reference/modules/terraform-aws-control-tower/control-tower-multi-account-factory-async/control-tower-multi-account-factory-async.md @@ -781,6 +781,7 @@ The data from all the AWS accounts created. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/control-tower-multi-account-factory/control-tower-multi-account-factory.md b/docs/reference/modules/terraform-aws-control-tower/control-tower-multi-account-factory/control-tower-multi-account-factory.md index 5bc7433aad..07033217f4 100644 --- a/docs/reference/modules/terraform-aws-control-tower/control-tower-multi-account-factory/control-tower-multi-account-factory.md +++ b/docs/reference/modules/terraform-aws-control-tower/control-tower-multi-account-factory/control-tower-multi-account-factory.md @@ -331,6 +331,7 @@ The data from all the AWS accounts created. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/control-tower-provisioned-product-artifact-updater/control-tower-provisioned-product-artifact-updater.md b/docs/reference/modules/terraform-aws-control-tower/control-tower-provisioned-product-artifact-updater/control-tower-provisioned-product-artifact-updater.md index e2767d2628..9adc701c39 100644 --- a/docs/reference/modules/terraform-aws-control-tower/control-tower-provisioned-product-artifact-updater/control-tower-provisioned-product-artifact-updater.md +++ b/docs/reference/modules/terraform-aws-control-tower/control-tower-provisioned-product-artifact-updater/control-tower-provisioned-product-artifact-updater.md @@ -269,6 +269,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/control-tower-security-account-baseline/control-tower-security-account-baseline.md b/docs/reference/modules/terraform-aws-control-tower/control-tower-security-account-baseline/control-tower-security-account-baseline.md index 7cb9b1b362..ea71783375 100644 --- a/docs/reference/modules/terraform-aws-control-tower/control-tower-security-account-baseline/control-tower-security-account-baseline.md +++ b/docs/reference/modules/terraform-aws-control-tower/control-tower-security-account-baseline/control-tower-security-account-baseline.md @@ -3615,6 +3615,7 @@ A map of usernames to that user's AWS Web Console password, encrypted with that +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/organizational-units/organizational-units.md b/docs/reference/modules/terraform-aws-control-tower/organizational-units/organizational-units.md index 318112b141..c9b8d8ee35 100644 --- a/docs/reference/modules/terraform-aws-control-tower/organizational-units/organizational-units.md +++ b/docs/reference/modules/terraform-aws-control-tower/organizational-units/organizational-units.md @@ -120,6 +120,7 @@ If set to true, this module will look for the specified organizational unit (OU) +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/sso-groups/sso-groups.md b/docs/reference/modules/terraform-aws-control-tower/sso-groups/sso-groups.md index ca5b171a62..b29dd74322 100644 --- a/docs/reference/modules/terraform-aws-control-tower/sso-groups/sso-groups.md +++ b/docs/reference/modules/terraform-aws-control-tower/sso-groups/sso-groups.md @@ -207,6 +207,7 @@ ARN of the SSO Admin instance where the Permission Set should be provisioned. Th +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-control-tower/sso-permission-sets/sso-permission-sets.md b/docs/reference/modules/terraform-aws-control-tower/sso-permission-sets/sso-permission-sets.md index 0699976e8b..013ab4c3b7 100644 --- a/docs/reference/modules/terraform-aws-control-tower/sso-permission-sets/sso-permission-sets.md +++ b/docs/reference/modules/terraform-aws-control-tower/sso-permission-sets/sso-permission-sets.md @@ -332,6 +332,7 @@ The name of the permission set that was created. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/aurora/aurora.md b/docs/reference/modules/terraform-aws-data-storage/aurora/aurora.md index e3d681e496..926758e13f 100644 --- a/docs/reference/modules/terraform-aws-data-storage/aurora/aurora.md +++ b/docs/reference/modules/terraform-aws-data-storage/aurora/aurora.md @@ -2014,6 +2014,7 @@ A list of identifiers for Aurora cluster instances that are writers. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/backup-plan/backup-plan.md b/docs/reference/modules/terraform-aws-data-storage/backup-plan/backup-plan.md index 970bff1753..1024599334 100644 --- a/docs/reference/modules/terraform-aws-data-storage/backup-plan/backup-plan.md +++ b/docs/reference/modules/terraform-aws-data-storage/backup-plan/backup-plan.md @@ -241,6 +241,7 @@ The ARN of the IAM service role used by Backup plans +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/backup-vault/backup-vault.md b/docs/reference/modules/terraform-aws-data-storage/backup-vault/backup-vault.md index 35d144b7a9..63d355ea61 100644 --- a/docs/reference/modules/terraform-aws-data-storage/backup-vault/backup-vault.md +++ b/docs/reference/modules/terraform-aws-data-storage/backup-vault/backup-vault.md @@ -319,6 +319,7 @@ A map of tags assigned to the vault resources, including those inherited from th +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/dms/dms.md b/docs/reference/modules/terraform-aws-data-storage/dms/dms.md index c6885504cd..d24abd28a4 100644 --- a/docs/reference/modules/terraform-aws-data-storage/dms/dms.md +++ b/docs/reference/modules/terraform-aws-data-storage/dms/dms.md @@ -1174,6 +1174,7 @@ A map of maps containing the replication tasks created and their full output of +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/efs/efs.md b/docs/reference/modules/terraform-aws-data-storage/efs/efs.md index 3868607311..22e4919d58 100644 --- a/docs/reference/modules/terraform-aws-data-storage/efs/efs.md +++ b/docs/reference/modules/terraform-aws-data-storage/efs/efs.md @@ -638,6 +638,7 @@ The IDs of the security groups created for the file system. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/lambda-cleanup-snapshots/lambda-cleanup-snapshots.md b/docs/reference/modules/terraform-aws-data-storage/lambda-cleanup-snapshots/lambda-cleanup-snapshots.md index 58cd22dad1..4bc9e1f9eb 100644 --- a/docs/reference/modules/terraform-aws-data-storage/lambda-cleanup-snapshots/lambda-cleanup-snapshots.md +++ b/docs/reference/modules/terraform-aws-data-storage/lambda-cleanup-snapshots/lambda-cleanup-snapshots.md @@ -297,6 +297,7 @@ Namespace of snapshots that will be cleaned up by this module. If specified then +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/lambda-copy-shared-snapshot/lambda-copy-shared-snapshot.md b/docs/reference/modules/terraform-aws-data-storage/lambda-copy-shared-snapshot/lambda-copy-shared-snapshot.md index 82d04a85f8..e747ff41c4 100644 --- a/docs/reference/modules/terraform-aws-data-storage/lambda-copy-shared-snapshot/lambda-copy-shared-snapshot.md +++ b/docs/reference/modules/terraform-aws-data-storage/lambda-copy-shared-snapshot/lambda-copy-shared-snapshot.md @@ -395,6 +395,7 @@ Namespace all Lambda scheduling resources created by this module with this name. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/lambda-create-snapshot/lambda-create-snapshot.md b/docs/reference/modules/terraform-aws-data-storage/lambda-create-snapshot/lambda-create-snapshot.md index cd15b4eb5c..ceab3a9696 100644 --- a/docs/reference/modules/terraform-aws-data-storage/lambda-create-snapshot/lambda-create-snapshot.md +++ b/docs/reference/modules/terraform-aws-data-storage/lambda-create-snapshot/lambda-create-snapshot.md @@ -467,6 +467,7 @@ Namespace all snapshots created by this module's jobs with this suffix. If not s +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/lambda-share-snapshot/lambda-share-snapshot.md b/docs/reference/modules/terraform-aws-data-storage/lambda-share-snapshot/lambda-share-snapshot.md index e74c8d1a0f..9403c587d2 100644 --- a/docs/reference/modules/terraform-aws-data-storage/lambda-share-snapshot/lambda-share-snapshot.md +++ b/docs/reference/modules/terraform-aws-data-storage/lambda-share-snapshot/lambda-share-snapshot.md @@ -202,6 +202,7 @@ The amount of time, in seconds, between retries. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/opensearch/opensearch.md b/docs/reference/modules/terraform-aws-data-storage/opensearch/opensearch.md index 47aa64cb57..c356e465c2 100644 --- a/docs/reference/modules/terraform-aws-data-storage/opensearch/opensearch.md +++ b/docs/reference/modules/terraform-aws-data-storage/opensearch/opensearch.md @@ -1220,6 +1220,7 @@ The ID of the security group created for the OpenSearch domain. Null if not in V +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/org-backup-policy/org-backup-policy.md b/docs/reference/modules/terraform-aws-data-storage/org-backup-policy/org-backup-policy.md index 0aa626587a..eaf9086a16 100644 --- a/docs/reference/modules/terraform-aws-data-storage/org-backup-policy/org-backup-policy.md +++ b/docs/reference/modules/terraform-aws-data-storage/org-backup-policy/org-backup-policy.md @@ -731,6 +731,7 @@ ID of the backup policies +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/rds-proxy/rds-proxy.md b/docs/reference/modules/terraform-aws-data-storage/rds-proxy/rds-proxy.md index 371c5c1e6e..d421b6fc90 100644 --- a/docs/reference/modules/terraform-aws-data-storage/rds-proxy/rds-proxy.md +++ b/docs/reference/modules/terraform-aws-data-storage/rds-proxy/rds-proxy.md @@ -629,6 +629,7 @@ The ID of the security group associated with the RDS proxy. This security group +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/rds-replicas/rds-replicas.md b/docs/reference/modules/terraform-aws-data-storage/rds-replicas/rds-replicas.md index c02aa14f37..e072c2c768 100644 --- a/docs/reference/modules/terraform-aws-data-storage/rds-replicas/rds-replicas.md +++ b/docs/reference/modules/terraform-aws-data-storage/rds-replicas/rds-replicas.md @@ -1062,6 +1062,7 @@ The port number on which the read replicas accept connections. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/rds/rds.md b/docs/reference/modules/terraform-aws-data-storage/rds/rds.md index e6fd8140d9..15d4cd5ec9 100644 --- a/docs/reference/modules/terraform-aws-data-storage/rds/rds.md +++ b/docs/reference/modules/terraform-aws-data-storage/rds/rds.md @@ -2057,6 +2057,7 @@ The ID of the security group created for the RDS instance. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-data-storage/redshift/redshift.md b/docs/reference/modules/terraform-aws-data-storage/redshift/redshift.md index be891634d8..95f380cc99 100644 --- a/docs/reference/modules/terraform-aws-data-storage/redshift/redshift.md +++ b/docs/reference/modules/terraform-aws-data-storage/redshift/redshift.md @@ -1152,6 +1152,7 @@ The ID of the Security Group that controls access to the cluster +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ecs/ecs-cluster/ecs-cluster.md b/docs/reference/modules/terraform-aws-ecs/ecs-cluster/ecs-cluster.md index 5cfd7c3987..7bc7c79b9b 100644 --- a/docs/reference/modules/terraform-aws-ecs/ecs-cluster/ecs-cluster.md +++ b/docs/reference/modules/terraform-aws-ecs/ecs-cluster/ecs-cluster.md @@ -1697,6 +1697,7 @@ Set this variable to true to enable the use of Instance Metadata Service Version +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ecs/ecs-daemon-service/ecs-daemon-service.md b/docs/reference/modules/terraform-aws-ecs/ecs-daemon-service/ecs-daemon-service.md index 07b3e85729..a5db34cb38 100644 --- a/docs/reference/modules/terraform-aws-ecs/ecs-daemon-service/ecs-daemon-service.md +++ b/docs/reference/modules/terraform-aws-ecs/ecs-daemon-service/ecs-daemon-service.md @@ -632,6 +632,7 @@ If true, Terraform will wait for the service to reach a steady state—as in, th +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ecs/ecs-deploy-check-binaries/ecs-deploy-check-binaries.md b/docs/reference/modules/terraform-aws-ecs/ecs-deploy-check-binaries/ecs-deploy-check-binaries.md index 5e5947ccd3..67a4b2226b 100644 --- a/docs/reference/modules/terraform-aws-ecs/ecs-deploy-check-binaries/ecs-deploy-check-binaries.md +++ b/docs/reference/modules/terraform-aws-ecs/ecs-deploy-check-binaries/ecs-deploy-check-binaries.md @@ -105,6 +105,7 @@ pyenv shell 3.8.0 3.9.0 3.10.0 3.11.0 ``` +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ecs/ecs-deploy/ecs-deploy.md b/docs/reference/modules/terraform-aws-ecs/ecs-deploy/ecs-deploy.md index 0651dc3051..7595011769 100644 --- a/docs/reference/modules/terraform-aws-ecs/ecs-deploy/ecs-deploy.md +++ b/docs/reference/modules/terraform-aws-ecs/ecs-deploy/ecs-deploy.md @@ -92,6 +92,7 @@ This will spin up a new ECS task using the `my-app` revision 3 ECS Task Definition, and run the `python manage.py migrate` command in the `django` container instead of the command configured in the Task Definition. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ecs/ecs-fargate/ecs-fargate.md b/docs/reference/modules/terraform-aws-ecs/ecs-fargate/ecs-fargate.md index 5c12228850..63db31830a 100644 --- a/docs/reference/modules/terraform-aws-ecs/ecs-fargate/ecs-fargate.md +++ b/docs/reference/modules/terraform-aws-ecs/ecs-fargate/ecs-fargate.md @@ -20,6 +20,7 @@ import { ModuleUsage } from "../../../../../src/components/ModuleUsage"; **NOTE**: The `ecs-fargate` module has been merged with `ecs-service` as of `v0.16.0`. Refer to the migration guide in [the release notes](https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v0.16.0) for more info. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ecs/ecs-scripts/ecs-scripts.md b/docs/reference/modules/terraform-aws-ecs/ecs-scripts/ecs-scripts.md index 7c83b296ac..80a230f37a 100644 --- a/docs/reference/modules/terraform-aws-ecs/ecs-scripts/ecs-scripts.md +++ b/docs/reference/modules/terraform-aws-ecs/ecs-scripts/ecs-scripts.md @@ -76,6 +76,7 @@ configure-ecs-instance --ecs-cluster-name my-ecs-cluster --docker-auth-type dock Run `configure-ecs-instance --help` to see all available options. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ecs/ecs-service-with-alb/ecs-service-with-alb.md b/docs/reference/modules/terraform-aws-ecs/ecs-service-with-alb/ecs-service-with-alb.md index 902cbf4ad4..928de5aad8 100644 --- a/docs/reference/modules/terraform-aws-ecs/ecs-service-with-alb/ecs-service-with-alb.md +++ b/docs/reference/modules/terraform-aws-ecs/ecs-service-with-alb/ecs-service-with-alb.md @@ -20,6 +20,7 @@ import { ModuleUsage } from "../../../../../src/components/ModuleUsage"; **NOTE**: The `ecs-service-with-alb` module has been merged with `ecs-service` as of `v0.16.0`. Refer to the migration guide in [the release notes](https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v0.16.0) for more info. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ecs/ecs-service-with-discovery/ecs-service-with-discovery.md b/docs/reference/modules/terraform-aws-ecs/ecs-service-with-discovery/ecs-service-with-discovery.md index 8c01fd0db4..72a88492be 100644 --- a/docs/reference/modules/terraform-aws-ecs/ecs-service-with-discovery/ecs-service-with-discovery.md +++ b/docs/reference/modules/terraform-aws-ecs/ecs-service-with-discovery/ecs-service-with-discovery.md @@ -20,6 +20,7 @@ import { ModuleUsage } from "../../../../../src/components/ModuleUsage"; **NOTE**: The `ecs-service-with-discovery` module has been merged with `ecs-service` as of `v0.16.0`. Refer to the migration guide in [the release notes](https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v0.16.0) for more info. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ecs/ecs-service/ecs-service.md b/docs/reference/modules/terraform-aws-ecs/ecs-service/ecs-service.md index 0cb003870f..793123303d 100644 --- a/docs/reference/modules/terraform-aws-ecs/ecs-service/ecs-service.md +++ b/docs/reference/modules/terraform-aws-ecs/ecs-service/ecs-service.md @@ -2073,6 +2073,7 @@ If true, Terraform will wait for the service to reach a steady state — as in, +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ecs/ecs-task-definition/ecs-task-definition.md b/docs/reference/modules/terraform-aws-ecs/ecs-task-definition/ecs-task-definition.md index ad969cb8d5..23254caa4b 100644 --- a/docs/reference/modules/terraform-aws-ecs/ecs-task-definition/ecs-task-definition.md +++ b/docs/reference/modules/terraform-aws-ecs/ecs-task-definition/ecs-task-definition.md @@ -826,6 +826,7 @@ Any types represent complex values of variable type. For details, please consult +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-ecs/ecs-task-scheduler/ecs-task-scheduler.md b/docs/reference/modules/terraform-aws-ecs/ecs-task-scheduler/ecs-task-scheduler.md index 4520547c38..ac01ce8eee 100644 --- a/docs/reference/modules/terraform-aws-ecs/ecs-task-scheduler/ecs-task-scheduler.md +++ b/docs/reference/modules/terraform-aws-ecs/ecs-task-scheduler/ecs-task-scheduler.md @@ -573,6 +573,7 @@ The scheduling expression to use (rate or cron - see README for usage examples). +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-alb-ingress-controller-iam-policy/eks-alb-ingress-controller-iam-policy.md b/docs/reference/modules/terraform-aws-eks/eks-alb-ingress-controller-iam-policy/eks-alb-ingress-controller-iam-policy.md index 5e367cde07..f4ba3e2fff 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-alb-ingress-controller-iam-policy/eks-alb-ingress-controller-iam-policy.md +++ b/docs/reference/modules/terraform-aws-eks/eks-alb-ingress-controller-iam-policy/eks-alb-ingress-controller-iam-policy.md @@ -238,6 +238,7 @@ The name of the IAM policy created with the permissions for the ALB ingress cont +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-alb-ingress-controller/eks-alb-ingress-controller.md b/docs/reference/modules/terraform-aws-eks/eks-alb-ingress-controller/eks-alb-ingress-controller.md index df7c848a18..11390ec619 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-alb-ingress-controller/eks-alb-ingress-controller.md +++ b/docs/reference/modules/terraform-aws-eks/eks-alb-ingress-controller/eks-alb-ingress-controller.md @@ -914,6 +914,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-aws-auth-merger/eks-aws-auth-merger.md b/docs/reference/modules/terraform-aws-eks/eks-aws-auth-merger/eks-aws-auth-merger.md index 5a79d072e1..e206f3a0a2 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-aws-auth-merger/eks-aws-auth-merger.md +++ b/docs/reference/modules/terraform-aws-eks/eks-aws-auth-merger/eks-aws-auth-merger.md @@ -655,6 +655,7 @@ The name of the namespace that is used. If create_namespace is true, this output +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-cloudwatch-agent/eks-cloudwatch-agent.md b/docs/reference/modules/terraform-aws-eks/eks-cloudwatch-agent/eks-cloudwatch-agent.md index b91743783f..e489709f9e 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-cloudwatch-agent/eks-cloudwatch-agent.md +++ b/docs/reference/modules/terraform-aws-eks/eks-cloudwatch-agent/eks-cloudwatch-agent.md @@ -243,6 +243,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-cluster-control-plane/eks-cluster-control-plane.md b/docs/reference/modules/terraform-aws-eks/eks-cluster-control-plane/eks-cluster-control-plane.md index 509900795f..e074543048 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-cluster-control-plane/eks-cluster-control-plane.md +++ b/docs/reference/modules/terraform-aws-eks/eks-cluster-control-plane/eks-cluster-control-plane.md @@ -2135,6 +2135,7 @@ The IPv4 CIDR block that Kubernetes pod and service IP addresses are assigned fr +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-cluster-managed-workers/eks-cluster-managed-workers.md b/docs/reference/modules/terraform-aws-eks/eks-cluster-managed-workers/eks-cluster-managed-workers.md index ed24629d1a..0cd9e9fb65 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-cluster-managed-workers/eks-cluster-managed-workers.md +++ b/docs/reference/modules/terraform-aws-eks/eks-cluster-managed-workers/eks-cluster-managed-workers.md @@ -1017,6 +1017,7 @@ Map of Node Group names to ARNs of the created EKS Node Groups +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-cluster-workers-cross-access/eks-cluster-workers-cross-access.md b/docs/reference/modules/terraform-aws-eks/eks-cluster-workers-cross-access/eks-cluster-workers-cross-access.md index c5d6302329..76ad48fea5 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-cluster-workers-cross-access/eks-cluster-workers-cross-access.md +++ b/docs/reference/modules/terraform-aws-eks/eks-cluster-workers-cross-access/eks-cluster-workers-cross-access.md @@ -135,6 +135,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-cluster-workers/eks-cluster-workers.md b/docs/reference/modules/terraform-aws-eks/eks-cluster-workers/eks-cluster-workers.md index 8f787cf3d5..b970b3bd76 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-cluster-workers/eks-cluster-workers.md +++ b/docs/reference/modules/terraform-aws-eks/eks-cluster-workers/eks-cluster-workers.md @@ -1659,6 +1659,7 @@ AWS ID of the security group created for the EKS worker nodes. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-container-logs/eks-container-logs.md b/docs/reference/modules/terraform-aws-eks/eks-container-logs/eks-container-logs.md index ce06cec72a..0cf362b64b 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-container-logs/eks-container-logs.md +++ b/docs/reference/modules/terraform-aws-eks/eks-container-logs/eks-container-logs.md @@ -629,6 +629,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-ebs-csi-driver/eks-ebs-csi-driver.md b/docs/reference/modules/terraform-aws-eks/eks-ebs-csi-driver/eks-ebs-csi-driver.md index 4f9e336ab1..797dc082e4 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-ebs-csi-driver/eks-ebs-csi-driver.md +++ b/docs/reference/modules/terraform-aws-eks/eks-ebs-csi-driver/eks-ebs-csi-driver.md @@ -380,6 +380,7 @@ The latest available version of the EBS CSI AddOn. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-fargate-container-logs/eks-fargate-container-logs.md b/docs/reference/modules/terraform-aws-eks/eks-fargate-container-logs/eks-fargate-container-logs.md index 13629f4d2d..4b06d90e06 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-fargate-container-logs/eks-fargate-container-logs.md +++ b/docs/reference/modules/terraform-aws-eks/eks-fargate-container-logs/eks-fargate-container-logs.md @@ -663,6 +663,7 @@ The ID of the Kubernetes ConfigMap containing the logging configuration. This ca +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-iam-role-assume-role-policy-for-service-account/eks-iam-role-assume-role-policy-for-service-account.md b/docs/reference/modules/terraform-aws-eks/eks-iam-role-assume-role-policy-for-service-account/eks-iam-role-assume-role-policy-for-service-account.md index 39e67db523..f7bc288282 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-iam-role-assume-role-policy-for-service-account/eks-iam-role-assume-role-policy-for-service-account.md +++ b/docs/reference/modules/terraform-aws-eks/eks-iam-role-assume-role-policy-for-service-account/eks-iam-role-assume-role-policy-for-service-account.md @@ -213,6 +213,7 @@ JSON value for IAM Role Assume Role Policy that allows Kubernetes Service Accoun +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-k8s-argocd/eks-k8s-argocd.md b/docs/reference/modules/terraform-aws-eks/eks-k8s-argocd/eks-k8s-argocd.md index feff7d4984..a8cb1cf00c 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-k8s-argocd/eks-k8s-argocd.md +++ b/docs/reference/modules/terraform-aws-eks/eks-k8s-argocd/eks-k8s-argocd.md @@ -465,6 +465,7 @@ The status of the Argo CD Helm chart. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-k8s-cluster-autoscaler-iam-policy/eks-k8s-cluster-autoscaler-iam-policy.md b/docs/reference/modules/terraform-aws-eks/eks-k8s-cluster-autoscaler-iam-policy/eks-k8s-cluster-autoscaler-iam-policy.md index 7a3f6d3194..ab5d3be7fb 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-k8s-cluster-autoscaler-iam-policy/eks-k8s-cluster-autoscaler-iam-policy.md +++ b/docs/reference/modules/terraform-aws-eks/eks-k8s-cluster-autoscaler-iam-policy/eks-k8s-cluster-autoscaler-iam-policy.md @@ -263,6 +263,7 @@ The name of the IAM policy created with the permissions for the Kubernetes clust +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-k8s-cluster-autoscaler/eks-k8s-cluster-autoscaler.md b/docs/reference/modules/terraform-aws-eks/eks-k8s-cluster-autoscaler/eks-k8s-cluster-autoscaler.md index 36d38dab2e..5a01f3ac17 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-k8s-cluster-autoscaler/eks-k8s-cluster-autoscaler.md +++ b/docs/reference/modules/terraform-aws-eks/eks-k8s-cluster-autoscaler/eks-k8s-cluster-autoscaler.md @@ -422,6 +422,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-k8s-external-dns-iam-policy/eks-k8s-external-dns-iam-policy.md b/docs/reference/modules/terraform-aws-eks/eks-k8s-external-dns-iam-policy/eks-k8s-external-dns-iam-policy.md index e9363ed6ba..fd26e5fa98 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-k8s-external-dns-iam-policy/eks-k8s-external-dns-iam-policy.md +++ b/docs/reference/modules/terraform-aws-eks/eks-k8s-external-dns-iam-policy/eks-k8s-external-dns-iam-policy.md @@ -238,6 +238,7 @@ The name of the IAM policy created with the permissions for the external-dns Kub +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-k8s-external-dns/eks-k8s-external-dns.md b/docs/reference/modules/terraform-aws-eks/eks-k8s-external-dns/eks-k8s-external-dns.md index 80a85ca00d..139ed7bfe4 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-k8s-external-dns/eks-k8s-external-dns.md +++ b/docs/reference/modules/terraform-aws-eks/eks-k8s-external-dns/eks-k8s-external-dns.md @@ -514,6 +514,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-k8s-karpenter/eks-k8s-karpenter.md b/docs/reference/modules/terraform-aws-eks/eks-k8s-karpenter/eks-k8s-karpenter.md index 89805877d8..7f1d3f2639 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-k8s-karpenter/eks-k8s-karpenter.md +++ b/docs/reference/modules/terraform-aws-eks/eks-k8s-karpenter/eks-k8s-karpenter.md @@ -935,6 +935,7 @@ The name of the Karpenter Node IAM Role. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-k8s-role-mapping/eks-k8s-role-mapping.md b/docs/reference/modules/terraform-aws-eks/eks-k8s-role-mapping/eks-k8s-role-mapping.md index 4a90f20ed0..2b8b337ae3 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-k8s-role-mapping/eks-k8s-role-mapping.md +++ b/docs/reference/modules/terraform-aws-eks/eks-k8s-role-mapping/eks-k8s-role-mapping.md @@ -565,6 +565,7 @@ The name of the ConfigMap created to store the mapping. This exists so that down +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-scripts/eks-scripts.md b/docs/reference/modules/terraform-aws-eks/eks-scripts/eks-scripts.md index 9cc002d2ad..4c36c8d30a 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-scripts/eks-scripts.md +++ b/docs/reference/modules/terraform-aws-eks/eks-scripts/eks-scripts.md @@ -104,6 +104,7 @@ Due to limitations in how python imports scripts, this module includes a symlink `map_ec2_tags_to_node_labels.py` to the `map-ec2-tags-to-node-labels` script so that it can be imported in the unit tests. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-eks/eks-vpc-tags/eks-vpc-tags.md b/docs/reference/modules/terraform-aws-eks/eks-vpc-tags/eks-vpc-tags.md index 5a505c6db2..04d99bfd82 100644 --- a/docs/reference/modules/terraform-aws-eks/eks-vpc-tags/eks-vpc-tags.md +++ b/docs/reference/modules/terraform-aws-eks/eks-vpc-tags/eks-vpc-tags.md @@ -139,6 +139,7 @@ Tags for public subnets in the VPC to use for integration with EKS. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/api-gateway-account-settings/api-gateway-account-settings.md b/docs/reference/modules/terraform-aws-lambda/api-gateway-account-settings/api-gateway-account-settings.md index 823f658fac..0d72311caa 100644 --- a/docs/reference/modules/terraform-aws-lambda/api-gateway-account-settings/api-gateway-account-settings.md +++ b/docs/reference/modules/terraform-aws-lambda/api-gateway-account-settings/api-gateway-account-settings.md @@ -187,6 +187,7 @@ When true, all IAM policies will be managed as dedicated policies rather than in +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/api-gateway-proxy-methods/api-gateway-proxy-methods.md b/docs/reference/modules/terraform-aws-lambda/api-gateway-proxy-methods/api-gateway-proxy-methods.md index a10e82ac99..195af417ca 100644 --- a/docs/reference/modules/terraform-aws-lambda/api-gateway-proxy-methods/api-gateway-proxy-methods.md +++ b/docs/reference/modules/terraform-aws-lambda/api-gateway-proxy-methods/api-gateway-proxy-methods.md @@ -289,6 +289,7 @@ ID of the API Gateway method for the root proxy (only created if path_prefix is +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/api-gateway-proxy/api-gateway-proxy.md b/docs/reference/modules/terraform-aws-lambda/api-gateway-proxy/api-gateway-proxy.md index 6b45e4d0cf..2451c79392 100644 --- a/docs/reference/modules/terraform-aws-lambda/api-gateway-proxy/api-gateway-proxy.md +++ b/docs/reference/modules/terraform-aws-lambda/api-gateway-proxy/api-gateway-proxy.md @@ -768,6 +768,7 @@ The URL of the API Gateway that you can use to invoke it. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/keep-warm/keep-warm.md b/docs/reference/modules/terraform-aws-lambda/keep-warm/keep-warm.md index 022936ada9..ad1e1f964f 100644 --- a/docs/reference/modules/terraform-aws-lambda/keep-warm/keep-warm.md +++ b/docs/reference/modules/terraform-aws-lambda/keep-warm/keep-warm.md @@ -341,6 +341,7 @@ When true, all IAM policies will be managed as dedicated policies rather than in +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/lambda-alias/lambda-alias.md b/docs/reference/modules/terraform-aws-lambda/lambda-alias/lambda-alias.md index b552020d2d..cf7b43b4b0 100644 --- a/docs/reference/modules/terraform-aws-lambda/lambda-alias/lambda-alias.md +++ b/docs/reference/modules/terraform-aws-lambda/lambda-alias/lambda-alias.md @@ -236,6 +236,7 @@ The name of the Lambda alias +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/lambda-edge-log-group/lambda-edge-log-group.md b/docs/reference/modules/terraform-aws-lambda/lambda-edge-log-group/lambda-edge-log-group.md index b831a11a3c..1bf61c8942 100644 --- a/docs/reference/modules/terraform-aws-lambda/lambda-edge-log-group/lambda-edge-log-group.md +++ b/docs/reference/modules/terraform-aws-lambda/lambda-edge-log-group/lambda-edge-log-group.md @@ -336,6 +336,7 @@ When true, precreate the CloudWatch Log Group to use for log aggregation from th +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/lambda-edge-multi-region-log-groups/lambda-edge-multi-region-log-groups.md b/docs/reference/modules/terraform-aws-lambda/lambda-edge-multi-region-log-groups/lambda-edge-multi-region-log-groups.md index 25feb15b68..bc51f28250 100644 --- a/docs/reference/modules/terraform-aws-lambda/lambda-edge-multi-region-log-groups/lambda-edge-multi-region-log-groups.md +++ b/docs/reference/modules/terraform-aws-lambda/lambda-edge-multi-region-log-groups/lambda-edge-multi-region-log-groups.md @@ -318,6 +318,7 @@ Map of log group names per region +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/lambda-edge/lambda-edge.md b/docs/reference/modules/terraform-aws-lambda/lambda-edge/lambda-edge.md index 7922f8b620..a5c2286861 100644 --- a/docs/reference/modules/terraform-aws-lambda/lambda-edge/lambda-edge.md +++ b/docs/reference/modules/terraform-aws-lambda/lambda-edge/lambda-edge.md @@ -870,6 +870,7 @@ Name of the (optionally) created CloudWatch log groups for the lambda function. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/lambda-function-url/lambda-function-url.md b/docs/reference/modules/terraform-aws-lambda/lambda-function-url/lambda-function-url.md index a00ae3a288..bb91d5bba0 100644 --- a/docs/reference/modules/terraform-aws-lambda/lambda-function-url/lambda-function-url.md +++ b/docs/reference/modules/terraform-aws-lambda/lambda-function-url/lambda-function-url.md @@ -392,6 +392,7 @@ A generated ID for the endpoint. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/lambda-http-api-gateway/lambda-http-api-gateway.md b/docs/reference/modules/terraform-aws-lambda/lambda-http-api-gateway/lambda-http-api-gateway.md index effc407029..680bc235a2 100644 --- a/docs/reference/modules/terraform-aws-lambda/lambda-http-api-gateway/lambda-http-api-gateway.md +++ b/docs/reference/modules/terraform-aws-lambda/lambda-http-api-gateway/lambda-http-api-gateway.md @@ -11,7 +11,7 @@ import { ModuleUsage } from "../../../../../src/components/ModuleUsage"; - +*/} View Source @@ -725,6 +725,7 @@ A map from the route keys to the IDs of the corresponding API Gateway V2 Route r +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/lambda/lambda.md b/docs/reference/modules/terraform-aws-lambda/lambda/lambda.md index a09cfb2fa5..68c3975007 100644 --- a/docs/reference/modules/terraform-aws-lambda/lambda/lambda.md +++ b/docs/reference/modules/terraform-aws-lambda/lambda/lambda.md @@ -1437,6 +1437,7 @@ Optimization status of Lambda SnapStart. Possible values: 'On' (SnapStart is act +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/run-lambda-entrypoint/run-lambda-entrypoint.md b/docs/reference/modules/terraform-aws-lambda/run-lambda-entrypoint/run-lambda-entrypoint.md index b1198d3a23..0ef3c4aad4 100644 --- a/docs/reference/modules/terraform-aws-lambda/run-lambda-entrypoint/run-lambda-entrypoint.md +++ b/docs/reference/modules/terraform-aws-lambda/run-lambda-entrypoint/run-lambda-entrypoint.md @@ -11,7 +11,7 @@ import { ModuleUsage } from "../../../../../src/components/ModuleUsage"; - +*/} View Source @@ -180,6 +180,7 @@ SECRETS_MANAGER_ARN => LAMBDA_ENV_SECRETS_MANAGER_ARN_P0_RDS => LAMBDA_ENV_SECRE Note that the passed in ARN can also reference a Secrets Manager name. If the value is not an ARN, the entrypoint CLI will assume it is the name of a Secrets Manager entry in the same region as the Lambda function. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-lambda/scheduled-lambda-job/scheduled-lambda-job.md b/docs/reference/modules/terraform-aws-lambda/scheduled-lambda-job/scheduled-lambda-job.md index 02c5a75fe4..718eac4a7e 100644 --- a/docs/reference/modules/terraform-aws-lambda/scheduled-lambda-job/scheduled-lambda-job.md +++ b/docs/reference/modules/terraform-aws-lambda/scheduled-lambda-job/scheduled-lambda-job.md @@ -231,6 +231,7 @@ Cloudwatch Event Rule schedule expression +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-load-balancer/acm-tls-certificate/acm-tls-certificate.md b/docs/reference/modules/terraform-aws-load-balancer/acm-tls-certificate/acm-tls-certificate.md index 6fbfa39281..9b022566e4 100644 --- a/docs/reference/modules/terraform-aws-load-balancer/acm-tls-certificate/acm-tls-certificate.md +++ b/docs/reference/modules/terraform-aws-load-balancer/acm-tls-certificate/acm-tls-certificate.md @@ -550,6 +550,7 @@ Global tags to apply to all ACM certificates issued via this module. These globa +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-load-balancer/alb/alb.md b/docs/reference/modules/terraform-aws-load-balancer/alb/alb.md index 3f6e567f2a..d922954344 100644 --- a/docs/reference/modules/terraform-aws-load-balancer/alb/alb.md +++ b/docs/reference/modules/terraform-aws-load-balancer/alb/alb.md @@ -1414,6 +1414,7 @@ A map from port to the AWS ARNs of the listeners for the ALB that has been deplo +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-load-balancer/lb-listener-rules/lb-listener-rules.md b/docs/reference/modules/terraform-aws-load-balancer/lb-listener-rules/lb-listener-rules.md index 2d28f3436f..d505c53307 100644 --- a/docs/reference/modules/terraform-aws-load-balancer/lb-listener-rules/lb-listener-rules.md +++ b/docs/reference/modules/terraform-aws-load-balancer/lb-listener-rules/lb-listener-rules.md @@ -846,6 +846,7 @@ The ARNs of the rules of type redirect. The key is the same key of the rule from +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-load-balancer/nlb/nlb.md b/docs/reference/modules/terraform-aws-load-balancer/nlb/nlb.md index 2277fd9168..4c45e67115 100644 --- a/docs/reference/modules/terraform-aws-load-balancer/nlb/nlb.md +++ b/docs/reference/modules/terraform-aws-load-balancer/nlb/nlb.md @@ -25,6 +25,7 @@ For information on why the module was removed, refer to the discussion in [PR \#62](https://github.com/gruntwork-io/terraform-aws-load-balancer/pull/62) and [PR \#65](https://github.com/gruntwork-io/terraform-aws-load-balancer/pull/65). +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-messaging/kinesis-firehose/kinesis-firehose.md b/docs/reference/modules/terraform-aws-messaging/kinesis-firehose/kinesis-firehose.md index 1e225299bf..dc1ba5f36a 100644 --- a/docs/reference/modules/terraform-aws-messaging/kinesis-firehose/kinesis-firehose.md +++ b/docs/reference/modules/terraform-aws-messaging/kinesis-firehose/kinesis-firehose.md @@ -234,6 +234,7 @@ Name of the role for Kinesis Firehose +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-messaging/kinesis/kinesis.md b/docs/reference/modules/terraform-aws-messaging/kinesis/kinesis.md index 7b9eae8f5a..4a752f8cf1 100644 --- a/docs/reference/modules/terraform-aws-messaging/kinesis/kinesis.md +++ b/docs/reference/modules/terraform-aws-messaging/kinesis/kinesis.md @@ -455,6 +455,7 @@ A map of key value pairs to apply as tags to the Kinesis stream. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-messaging/msk/msk.md b/docs/reference/modules/terraform-aws-messaging/msk/msk.md index cafd5533f8..b7061dc608 100644 --- a/docs/reference/modules/terraform-aws-messaging/msk/msk.md +++ b/docs/reference/modules/terraform-aws-messaging/msk/msk.md @@ -1242,6 +1242,7 @@ A comma separated list of one or more hostname:port pairs to use to connect to t +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-messaging/sns-sqs-connection/sns-sqs-connection.md b/docs/reference/modules/terraform-aws-messaging/sns-sqs-connection/sns-sqs-connection.md index 7ec04a0a47..2d71e561a0 100644 --- a/docs/reference/modules/terraform-aws-messaging/sns-sqs-connection/sns-sqs-connection.md +++ b/docs/reference/modules/terraform-aws-messaging/sns-sqs-connection/sns-sqs-connection.md @@ -198,6 +198,7 @@ Whether to enable raw message delivery (the original message is directly passed, +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-messaging/sns/sns.md b/docs/reference/modules/terraform-aws-messaging/sns/sns.md index 40b47dac42..8f506bc5f9 100644 --- a/docs/reference/modules/terraform-aws-messaging/sns/sns.md +++ b/docs/reference/modules/terraform-aws-messaging/sns/sns.md @@ -385,6 +385,7 @@ A map of key value pairs to apply as tags to the SNS topic. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-messaging/sqs-lambda-connection/sqs-lambda-connection.md b/docs/reference/modules/terraform-aws-messaging/sqs-lambda-connection/sqs-lambda-connection.md index 6b0daab822..4082ef6796 100644 --- a/docs/reference/modules/terraform-aws-messaging/sqs-lambda-connection/sqs-lambda-connection.md +++ b/docs/reference/modules/terraform-aws-messaging/sqs-lambda-connection/sqs-lambda-connection.md @@ -180,6 +180,7 @@ Limits the number of concurrent instances that the Amazon SQS event source can i +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-messaging/sqs/sqs.md b/docs/reference/modules/terraform-aws-messaging/sqs/sqs.md index 626b9777b8..8d845dcc48 100644 --- a/docs/reference/modules/terraform-aws-messaging/sqs/sqs.md +++ b/docs/reference/modules/terraform-aws-messaging/sqs/sqs.md @@ -662,6 +662,7 @@ The visibility timeout for the queue. An integer from 0 to 43200 (12 hours). +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-monitoring/alarms/alarms.md b/docs/reference/modules/terraform-aws-monitoring/alarms/alarms.md index 7e08b75ab2..0698dc596c 100644 --- a/docs/reference/modules/terraform-aws-monitoring/alarms/alarms.md +++ b/docs/reference/modules/terraform-aws-monitoring/alarms/alarms.md @@ -55,6 +55,7 @@ aws cloudwatch list-tags-for-resource --resource-arn alarm_arn Tags associated with a metric alarm are not propagated with the alarm payload when the alarm is triggered. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-monitoring/logs/logs.md b/docs/reference/modules/terraform-aws-monitoring/logs/logs.md index 7401a8827e..7addc6c561 100644 --- a/docs/reference/modules/terraform-aws-monitoring/logs/logs.md +++ b/docs/reference/modules/terraform-aws-monitoring/logs/logs.md @@ -27,6 +27,7 @@ This folder contains modules that help with logging: Click on each module above to see its documentation. Head over to the [examples folder](https://github.com/gruntwork-io/terraform-aws-monitoring/tree/v1.3.1/examples) for examples. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-monitoring/metrics/metrics.md b/docs/reference/modules/terraform-aws-monitoring/metrics/metrics.md index 54c7e530fc..807cd31552 100644 --- a/docs/reference/modules/terraform-aws-monitoring/metrics/metrics.md +++ b/docs/reference/modules/terraform-aws-monitoring/metrics/metrics.md @@ -27,6 +27,7 @@ This folder contains modules for working with CloudWatch metrics: Click on each module above to see its documentation. Head over to the [examples folder](https://github.com/gruntwork-io/terraform-aws-monitoring/tree/v1.3.1/examples) for examples. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-openvpn/backup-openvpn-pki/backup-openvpn-pki.md b/docs/reference/modules/terraform-aws-openvpn/backup-openvpn-pki/backup-openvpn-pki.md index 101e17692f..4596abe268 100644 --- a/docs/reference/modules/terraform-aws-openvpn/backup-openvpn-pki/backup-openvpn-pki.md +++ b/docs/reference/modules/terraform-aws-openvpn/backup-openvpn-pki/backup-openvpn-pki.md @@ -24,6 +24,7 @@ The PKI is the set of certificates used to verify the server and users' identiti normally lives on the OpenVPN server in the `/etc/openvpn-ca` and `/etc/openvpn` directories. If we didn't back these files up, we would have to reissue client certificates if the OpenVPN server ever needed to be rebuilt. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-openvpn/init-openvpn/init-openvpn.md b/docs/reference/modules/terraform-aws-openvpn/init-openvpn/init-openvpn.md index 82938f286a..742e30c64e 100644 --- a/docs/reference/modules/terraform-aws-openvpn/init-openvpn/init-openvpn.md +++ b/docs/reference/modules/terraform-aws-openvpn/init-openvpn/init-openvpn.md @@ -20,6 +20,7 @@ import { ModuleUsage } from "../../../../../src/components/ModuleUsage"; This module is used to initialize the OpenVPN server, its Public Key Infrastructure (PKI), Certificate Authority (CA) and configuration on a server that has been installed using the [install-openvpn](https://github.com/gruntwork-io/terraform-aws-openvpn/tree/v1.0.0/modules/install-openvpn) module. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-openvpn/install-openvpn/install-openvpn.md b/docs/reference/modules/terraform-aws-openvpn/install-openvpn/install-openvpn.md index 13486f1134..d1fbd3bf76 100644 --- a/docs/reference/modules/terraform-aws-openvpn/install-openvpn/install-openvpn.md +++ b/docs/reference/modules/terraform-aws-openvpn/install-openvpn/install-openvpn.md @@ -21,6 +21,7 @@ This module is used to install the OpenVPN package and related template files on the [init-openvpn](https://github.com/gruntwork-io/terraform-aws-openvpn/tree/v1.0.0/modules/init-openvpn) module will be run on the server during boot to configure the OpenVPN server installed by this package. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-openvpn/openvpn-admin/openvpn-admin.md b/docs/reference/modules/terraform-aws-openvpn/openvpn-admin/openvpn-admin.md index 477e25eced..ef63f80453 100644 --- a/docs/reference/modules/terraform-aws-openvpn/openvpn-admin/openvpn-admin.md +++ b/docs/reference/modules/terraform-aws-openvpn/openvpn-admin/openvpn-admin.md @@ -28,6 +28,7 @@ certificates and the OpenVPN server to process those requests. ![openvpn-revoke-flow-diagram](/img/reference/modules/terraform-aws-openvpn/openvpn-admin/openvpn-revoke-flow-diagram.png) +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-openvpn/openvpn-server/openvpn-server.md b/docs/reference/modules/terraform-aws-openvpn/openvpn-server/openvpn-server.md index b31b73b22a..7397716603 100644 --- a/docs/reference/modules/terraform-aws-openvpn/openvpn-server/openvpn-server.md +++ b/docs/reference/modules/terraform-aws-openvpn/openvpn-server/openvpn-server.md @@ -1120,6 +1120,7 @@ The base64-encoded User Data script to run on the server when it is booting. Thi +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-openvpn/start-openvpn-admin/start-openvpn-admin.md b/docs/reference/modules/terraform-aws-openvpn/start-openvpn-admin/start-openvpn-admin.md index 7beb03777e..b8c55abbd7 100644 --- a/docs/reference/modules/terraform-aws-openvpn/start-openvpn-admin/start-openvpn-admin.md +++ b/docs/reference/modules/terraform-aws-openvpn/start-openvpn-admin/start-openvpn-admin.md @@ -20,6 +20,7 @@ import { ModuleUsage } from "../../../../../src/components/ModuleUsage"; This module is used to setup system.d and to start the OpenVPN Admin to process new certificate requests and certificate revocation requests on the OpenVPN server +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/account-alternate-contact/account-alternate-contact.md b/docs/reference/modules/terraform-aws-security/account-alternate-contact/account-alternate-contact.md index 78683b8cc1..3ab60d953d 100644 --- a/docs/reference/modules/terraform-aws-security/account-alternate-contact/account-alternate-contact.md +++ b/docs/reference/modules/terraform-aws-security/account-alternate-contact/account-alternate-contact.md @@ -240,6 +240,7 @@ The type of the alternate contact. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/auto-update/auto-update.md b/docs/reference/modules/terraform-aws-security/auto-update/auto-update.md index a8d953dd09..bc38eba9b1 100644 --- a/docs/reference/modules/terraform-aws-security/auto-update/auto-update.md +++ b/docs/reference/modules/terraform-aws-security/auto-update/auto-update.md @@ -69,6 +69,7 @@ If you want to deploy this repo in production, check out the following resources * [Packer template in the Acme example Reference Architecture](https://github.com/gruntwork-io/infrastructure-modules-multi-account-acme/blob/main/services/eks-cluster/packer/eks-node.json): Production-ready sample code from the Acme Reference Architecture examples. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/aws-auth/aws-auth.md b/docs/reference/modules/terraform-aws-security/aws-auth/aws-auth.md index 36cc885d56..f7a4a3d339 100644 --- a/docs/reference/modules/terraform-aws-security/aws-auth/aws-auth.md +++ b/docs/reference/modules/terraform-aws-security/aws-auth/aws-auth.md @@ -246,6 +246,7 @@ If you you need to run `aws-auth` with a cronjob, you may want to set the `$USER * e.g. set the `$USER` variable like so: ` 05 10 * * * env USER=$USERNAME /path/to-your-script/script ` +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/aws-config-bucket/aws-config-bucket.md b/docs/reference/modules/terraform-aws-security/aws-config-bucket/aws-config-bucket.md index 5393b6ef9f..cb4efb9e31 100644 --- a/docs/reference/modules/terraform-aws-security/aws-config-bucket/aws-config-bucket.md +++ b/docs/reference/modules/terraform-aws-security/aws-config-bucket/aws-config-bucket.md @@ -493,6 +493,7 @@ The name of the S3 bucket used by AWS Config to store configuration items. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/aws-config-multi-region/aws-config-multi-region.md b/docs/reference/modules/terraform-aws-security/aws-config-multi-region/aws-config-multi-region.md index e1e85478a4..3464b3ccd7 100644 --- a/docs/reference/modules/terraform-aws-security/aws-config-multi-region/aws-config-multi-region.md +++ b/docs/reference/modules/terraform-aws-security/aws-config-multi-region/aws-config-multi-region.md @@ -1587,6 +1587,7 @@ The ARNs of the SNS Topic used by the config notifications. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/aws-config-rules/aws-config-rules.md b/docs/reference/modules/terraform-aws-security/aws-config-rules/aws-config-rules.md index a76874dd7d..e8b69c9ff8 100644 --- a/docs/reference/modules/terraform-aws-security/aws-config-rules/aws-config-rules.md +++ b/docs/reference/modules/terraform-aws-security/aws-config-rules/aws-config-rules.md @@ -674,6 +674,7 @@ Map of config rule ARNs. Key is rule ID, value is rule ARN +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/aws-config/aws-config.md b/docs/reference/modules/terraform-aws-security/aws-config/aws-config.md index 366feb140d..c389312920 100644 --- a/docs/reference/modules/terraform-aws-security/aws-config/aws-config.md +++ b/docs/reference/modules/terraform-aws-security/aws-config/aws-config.md @@ -1234,6 +1234,7 @@ The ARN of the SNS topic to which Config delivers notifications. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/aws-organizations/aws-organizations.md b/docs/reference/modules/terraform-aws-security/aws-organizations/aws-organizations.md index 5874177901..fc99258d3e 100644 --- a/docs/reference/modules/terraform-aws-security/aws-organizations/aws-organizations.md +++ b/docs/reference/modules/terraform-aws-security/aws-organizations/aws-organizations.md @@ -433,6 +433,7 @@ Identifier of the root of this organization. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/cloudtrail-bucket/cloudtrail-bucket.md b/docs/reference/modules/terraform-aws-security/cloudtrail-bucket/cloudtrail-bucket.md index 7a5c4e665e..e229883140 100644 --- a/docs/reference/modules/terraform-aws-security/cloudtrail-bucket/cloudtrail-bucket.md +++ b/docs/reference/modules/terraform-aws-security/cloudtrail-bucket/cloudtrail-bucket.md @@ -920,6 +920,7 @@ The name of the S3 bucket where cloudtrail logs are delivered. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/cloudtrail/cloudtrail.md b/docs/reference/modules/terraform-aws-security/cloudtrail/cloudtrail.md index e2cb047760..2cb49cfd9f 100644 --- a/docs/reference/modules/terraform-aws-security/cloudtrail/cloudtrail.md +++ b/docs/reference/modules/terraform-aws-security/cloudtrail/cloudtrail.md @@ -1410,6 +1410,7 @@ The name of the cloudtrail trail. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/cross-account-iam-roles/cross-account-iam-roles.md b/docs/reference/modules/terraform-aws-security/cross-account-iam-roles/cross-account-iam-roles.md index 0f504affca..a83c965571 100644 --- a/docs/reference/modules/terraform-aws-security/cross-account-iam-roles/cross-account-iam-roles.md +++ b/docs/reference/modules/terraform-aws-security/cross-account-iam-roles/cross-account-iam-roles.md @@ -1083,6 +1083,7 @@ When true, all IAM policies will be managed as dedicated policies rather than in +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/custom-iam-entity/custom-iam-entity.md b/docs/reference/modules/terraform-aws-security/custom-iam-entity/custom-iam-entity.md index 363b385320..e33dfc1e8d 100644 --- a/docs/reference/modules/terraform-aws-security/custom-iam-entity/custom-iam-entity.md +++ b/docs/reference/modules/terraform-aws-security/custom-iam-entity/custom-iam-entity.md @@ -514,6 +514,7 @@ The name of the IAM role. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/ebs-encryption-multi-region/ebs-encryption-multi-region.md b/docs/reference/modules/terraform-aws-security/ebs-encryption-multi-region/ebs-encryption-multi-region.md index e43aed5c84..7ae593107d 100644 --- a/docs/reference/modules/terraform-aws-security/ebs-encryption-multi-region/ebs-encryption-multi-region.md +++ b/docs/reference/modules/terraform-aws-security/ebs-encryption-multi-region/ebs-encryption-multi-region.md @@ -215,6 +215,7 @@ A map from region to the ARN of the KMS key used for default EBS encryption for +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/ebs-encryption/ebs-encryption.md b/docs/reference/modules/terraform-aws-security/ebs-encryption/ebs-encryption.md index a95d235f0c..f2b7018b0f 100644 --- a/docs/reference/modules/terraform-aws-security/ebs-encryption/ebs-encryption.md +++ b/docs/reference/modules/terraform-aws-security/ebs-encryption/ebs-encryption.md @@ -184,6 +184,7 @@ The default KMS key used for EBS encryption. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/fail2ban/fail2ban.md b/docs/reference/modules/terraform-aws-security/fail2ban/fail2ban.md index 17c3cb53de..4338af1b35 100644 --- a/docs/reference/modules/terraform-aws-security/fail2ban/fail2ban.md +++ b/docs/reference/modules/terraform-aws-security/fail2ban/fail2ban.md @@ -24,6 +24,7 @@ via SSH. This module currently supports Ubuntu, Amazon Linux, and CentOS (using The module also optionally creates CloudWatch Metrics to track the number of Banned and Unbanned IP Addresses per AWS Instance. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/github-actions-iam-role/github-actions-iam-role.md b/docs/reference/modules/terraform-aws-security/github-actions-iam-role/github-actions-iam-role.md index 815f7fcfa9..e036c26e24 100644 --- a/docs/reference/modules/terraform-aws-security/github-actions-iam-role/github-actions-iam-role.md +++ b/docs/reference/modules/terraform-aws-security/github-actions-iam-role/github-actions-iam-role.md @@ -583,6 +583,7 @@ The name of the IAM role. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/github-actions-openid-connect-provider/github-actions-openid-connect-provider.md b/docs/reference/modules/terraform-aws-security/github-actions-openid-connect-provider/github-actions-openid-connect-provider.md index 899507b518..263cb97ff4 100644 --- a/docs/reference/modules/terraform-aws-security/github-actions-openid-connect-provider/github-actions-openid-connect-provider.md +++ b/docs/reference/modules/terraform-aws-security/github-actions-openid-connect-provider/github-actions-openid-connect-provider.md @@ -179,6 +179,7 @@ Url used for the OIDC provider +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/gitlab-pipelines-iam-role/gitlab-pipelines-iam-role.md b/docs/reference/modules/terraform-aws-security/gitlab-pipelines-iam-role/gitlab-pipelines-iam-role.md index ac96a0a0b7..e5d18849b3 100644 --- a/docs/reference/modules/terraform-aws-security/gitlab-pipelines-iam-role/gitlab-pipelines-iam-role.md +++ b/docs/reference/modules/terraform-aws-security/gitlab-pipelines-iam-role/gitlab-pipelines-iam-role.md @@ -491,6 +491,7 @@ The name of the IAM role. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/gitlab-pipelines-openid-connect-provider/gitlab-pipelines-openid-connect-provider.md b/docs/reference/modules/terraform-aws-security/gitlab-pipelines-openid-connect-provider/gitlab-pipelines-openid-connect-provider.md index 924d044e29..1980decb7a 100644 --- a/docs/reference/modules/terraform-aws-security/gitlab-pipelines-openid-connect-provider/gitlab-pipelines-openid-connect-provider.md +++ b/docs/reference/modules/terraform-aws-security/gitlab-pipelines-openid-connect-provider/gitlab-pipelines-openid-connect-provider.md @@ -194,6 +194,7 @@ Url used for the OIDC provider +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/guardduty-bucket/guardduty-bucket.md b/docs/reference/modules/terraform-aws-security/guardduty-bucket/guardduty-bucket.md index b495606c5f..291f023913 100644 --- a/docs/reference/modules/terraform-aws-security/guardduty-bucket/guardduty-bucket.md +++ b/docs/reference/modules/terraform-aws-security/guardduty-bucket/guardduty-bucket.md @@ -624,6 +624,7 @@ The name of the S3 bucket where GuardDuty findings are delivered. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/guardduty-multi-region/guardduty-multi-region.md b/docs/reference/modules/terraform-aws-security/guardduty-multi-region/guardduty-multi-region.md index a22cccc5d0..16828a0870 100644 --- a/docs/reference/modules/terraform-aws-security/guardduty-multi-region/guardduty-multi-region.md +++ b/docs/reference/modules/terraform-aws-security/guardduty-multi-region/guardduty-multi-region.md @@ -654,6 +654,7 @@ The IDs of the GuardDuty detectors. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/guardduty/guardduty.md b/docs/reference/modules/terraform-aws-security/guardduty/guardduty.md index e236aca890..4b695a6d17 100644 --- a/docs/reference/modules/terraform-aws-security/guardduty/guardduty.md +++ b/docs/reference/modules/terraform-aws-security/guardduty/guardduty.md @@ -585,6 +585,7 @@ The ID of the GuardDuty detector. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/iam-access-analyzer-multi-region/iam-access-analyzer-multi-region.md b/docs/reference/modules/terraform-aws-security/iam-access-analyzer-multi-region/iam-access-analyzer-multi-region.md index fd5bacef81..c1e24a5a49 100644 --- a/docs/reference/modules/terraform-aws-security/iam-access-analyzer-multi-region/iam-access-analyzer-multi-region.md +++ b/docs/reference/modules/terraform-aws-security/iam-access-analyzer-multi-region/iam-access-analyzer-multi-region.md @@ -154,6 +154,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/iam-groups/iam-groups.md b/docs/reference/modules/terraform-aws-security/iam-groups/iam-groups.md index 889a5e42ec..dcee3d733b 100644 --- a/docs/reference/modules/terraform-aws-security/iam-groups/iam-groups.md +++ b/docs/reference/modules/terraform-aws-security/iam-groups/iam-groups.md @@ -950,6 +950,7 @@ Should we create the IAM Group for user self-management? Allows users to manage +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/iam-policies/iam-policies.md b/docs/reference/modules/terraform-aws-security/iam-policies/iam-policies.md index 2d08e61187..2a6d575baa 100644 --- a/docs/reference/modules/terraform-aws-security/iam-policies/iam-policies.md +++ b/docs/reference/modules/terraform-aws-security/iam-policies/iam-policies.md @@ -677,6 +677,7 @@ If set to true, all the Policies created by this module that are used as Trust P +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/iam-user-password-policy/iam-user-password-policy.md b/docs/reference/modules/terraform-aws-security/iam-user-password-policy/iam-user-password-policy.md index 490b9ed964..32b35e2fc0 100644 --- a/docs/reference/modules/terraform-aws-security/iam-user-password-policy/iam-user-password-policy.md +++ b/docs/reference/modules/terraform-aws-security/iam-user-password-policy/iam-user-password-policy.md @@ -332,6 +332,7 @@ Whether to require uppercase characters for user passwords. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/iam-users/iam-users.md b/docs/reference/modules/terraform-aws-security/iam-users/iam-users.md index 8a22304fee..b6048d8a3c 100644 --- a/docs/reference/modules/terraform-aws-security/iam-users/iam-users.md +++ b/docs/reference/modules/terraform-aws-security/iam-users/iam-users.md @@ -552,6 +552,7 @@ A map of usernames to that user's AWS SSH Security Credential ID +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/ip-lockdown/ip-lockdown.md b/docs/reference/modules/terraform-aws-security/ip-lockdown/ip-lockdown.md index c99589bf49..0612a6a0c2 100644 --- a/docs/reference/modules/terraform-aws-security/ip-lockdown/ip-lockdown.md +++ b/docs/reference/modules/terraform-aws-security/ip-lockdown/ip-lockdown.md @@ -58,6 +58,7 @@ gruntwork-install --module-name ip-lockdown --tag --re |IP|IP address that will be locked down (outgoing access will be disabled) for all *but* the users specified in subequent `[ ... ]]` arguments|Required|169.254.169.254| |USER|Space separated whitelist of users who will be allowed outgoing access to specified ip address|Optional|root (or any other OS user name)| +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/kms-cmk-replica/kms-cmk-replica.md b/docs/reference/modules/terraform-aws-security/kms-cmk-replica/kms-cmk-replica.md index 35480aad7e..daca500c2e 100644 --- a/docs/reference/modules/terraform-aws-security/kms-cmk-replica/kms-cmk-replica.md +++ b/docs/reference/modules/terraform-aws-security/kms-cmk-replica/kms-cmk-replica.md @@ -369,6 +369,7 @@ A map of CMK name to CMK ID. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/kms-grant-multi-region/kms-grant-multi-region.md b/docs/reference/modules/terraform-aws-security/kms-grant-multi-region/kms-grant-multi-region.md index 53af71b1af..7f889cdda2 100644 --- a/docs/reference/modules/terraform-aws-security/kms-grant-multi-region/kms-grant-multi-region.md +++ b/docs/reference/modules/terraform-aws-security/kms-grant-multi-region/kms-grant-multi-region.md @@ -176,6 +176,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/kms-master-key-multi-region/kms-master-key-multi-region.md b/docs/reference/modules/terraform-aws-security/kms-master-key-multi-region/kms-master-key-multi-region.md index 47011ba388..6207746383 100644 --- a/docs/reference/modules/terraform-aws-security/kms-master-key-multi-region/kms-master-key-multi-region.md +++ b/docs/reference/modules/terraform-aws-security/kms-master-key-multi-region/kms-master-key-multi-region.md @@ -518,6 +518,7 @@ A map from region to IDs of the replica KMS CMKs that were created. The value wi +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/kms-master-key/kms-master-key.md b/docs/reference/modules/terraform-aws-security/kms-master-key/kms-master-key.md index e2ee496893..75b23d18e9 100644 --- a/docs/reference/modules/terraform-aws-security/kms-master-key/kms-master-key.md +++ b/docs/reference/modules/terraform-aws-security/kms-master-key/kms-master-key.md @@ -447,6 +447,7 @@ A map of CMK name to CMK ID. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/ntp/ntp.md b/docs/reference/modules/terraform-aws-security/ntp/ntp.md index a55bb3e921..4371d4e35b 100644 --- a/docs/reference/modules/terraform-aws-security/ntp/ntp.md +++ b/docs/reference/modules/terraform-aws-security/ntp/ntp.md @@ -31,6 +31,7 @@ This script currently works on: Originally, Amazon recommended installing `ntpd` to prevent clock drift. Today, Amazon [recommends Chrony](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/set-time.html). In addition, Chrony is a newer, more robust implementation of the network time protocol (NTP). Chrony is strongly preferred to ntpd, however there are still minor [differences between ntpd and chronyd](https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/system_administrators_guide/ch-configuring_ntp_using_the_chrony_suite#sect-differences_between_ntpd_and_chronyd). +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/os-hardening/os-hardening.md b/docs/reference/modules/terraform-aws-security/os-hardening/os-hardening.md index d03f4dbbe5..3e40a26adf 100644 --- a/docs/reference/modules/terraform-aws-security/os-hardening/os-hardening.md +++ b/docs/reference/modules/terraform-aws-security/os-hardening/os-hardening.md @@ -266,6 +266,7 @@ needed additional space to build a new AMI was not unreasonable. * Per the [Packer docs for the amazon-chroot builder](https://www.packer.io/docs/builders/amazon-chroot.html), your provisioning scripts must not leave any processes running or Packer will be unable to unmount the filesystem. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/private-s3-bucket/private-s3-bucket.md b/docs/reference/modules/terraform-aws-security/private-s3-bucket/private-s3-bucket.md index 61943fd67b..114c5f1e97 100644 --- a/docs/reference/modules/terraform-aws-security/private-s3-bucket/private-s3-bucket.md +++ b/docs/reference/modules/terraform-aws-security/private-s3-bucket/private-s3-bucket.md @@ -1125,6 +1125,7 @@ The name of an IAM role that can be used to configure replication from various s +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/s3-account-public-access-block/s3-account-public-access-block.md b/docs/reference/modules/terraform-aws-security/s3-account-public-access-block/s3-account-public-access-block.md index 8ba542f268..d8758ac075 100644 --- a/docs/reference/modules/terraform-aws-security/s3-account-public-access-block/s3-account-public-access-block.md +++ b/docs/reference/modules/terraform-aws-security/s3-account-public-access-block/s3-account-public-access-block.md @@ -259,6 +259,7 @@ Whether Amazon S3 should restrict public bucket policies for buckets in this acc +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/s3-tls-enforcement-scp/s3-tls-enforcement-scp.md b/docs/reference/modules/terraform-aws-security/s3-tls-enforcement-scp/s3-tls-enforcement-scp.md index 86e105172c..14aaf40253 100644 --- a/docs/reference/modules/terraform-aws-security/s3-tls-enforcement-scp/s3-tls-enforcement-scp.md +++ b/docs/reference/modules/terraform-aws-security/s3-tls-enforcement-scp/s3-tls-enforcement-scp.md @@ -197,6 +197,7 @@ The ID of the S3 TLS enforcement SCP. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/saml-iam-roles/saml-iam-roles.md b/docs/reference/modules/terraform-aws-security/saml-iam-roles/saml-iam-roles.md index a3d3b8c1c3..2d63f088cb 100644 --- a/docs/reference/modules/terraform-aws-security/saml-iam-roles/saml-iam-roles.md +++ b/docs/reference/modules/terraform-aws-security/saml-iam-roles/saml-iam-roles.md @@ -892,6 +892,7 @@ A map of tags to apply to the IAM roles. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/secrets-manager-resource-policies/secrets-manager-resource-policies.md b/docs/reference/modules/terraform-aws-security/secrets-manager-resource-policies/secrets-manager-resource-policies.md index 4cf24e61ea..c8ec76ba97 100644 --- a/docs/reference/modules/terraform-aws-security/secrets-manager-resource-policies/secrets-manager-resource-policies.md +++ b/docs/reference/modules/terraform-aws-security/secrets-manager-resource-policies/secrets-manager-resource-policies.md @@ -96,6 +96,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/ssh-grunt-selinux-policy/ssh-grunt-selinux-policy.md b/docs/reference/modules/terraform-aws-security/ssh-grunt-selinux-policy/ssh-grunt-selinux-policy.md index d0885a5e8d..91fa85eddd 100644 --- a/docs/reference/modules/terraform-aws-security/ssh-grunt-selinux-policy/ssh-grunt-selinux-policy.md +++ b/docs/reference/modules/terraform-aws-security/ssh-grunt-selinux-policy/ssh-grunt-selinux-policy.md @@ -80,6 +80,7 @@ this module. These files can be installed by running: $ sudo semodule -i ssh-grunt.pp ``` +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/ssh-grunt/ssh-grunt.md b/docs/reference/modules/terraform-aws-security/ssh-grunt/ssh-grunt.md index 136f116187..f498bdc8f2 100644 --- a/docs/reference/modules/terraform-aws-security/ssh-grunt/ssh-grunt.md +++ b/docs/reference/modules/terraform-aws-security/ssh-grunt/ssh-grunt.md @@ -95,6 +95,7 @@ If you want to deploy this module in production, check out the following resourc * [IAM permissions required for ssh-grunt to work](https://github.com/gruntwork-io/terraform-aws-security/tree/v1.5.0/modules/ssh-grunt/core-concepts.md#set-up-iam-permissions) +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/ssh-iam/ssh-iam.md b/docs/reference/modules/terraform-aws-security/ssh-iam/ssh-iam.md index bdeba6875c..9f044d0ae2 100644 --- a/docs/reference/modules/terraform-aws-security/ssh-iam/ssh-iam.md +++ b/docs/reference/modules/terraform-aws-security/ssh-iam/ssh-iam.md @@ -20,6 +20,7 @@ import { ModuleUsage } from "../../../../../src/components/ModuleUsage"; `ssh-iam` has been renamed to [ssh-grunt](https://github.com/gruntwork-io/terraform-aws-security/tree/v1.5.0/modules/ssh-grunt). Please update all links to point to [ssh-grunt](https://github.com/gruntwork-io/terraform-aws-security/tree/v1.5.0/modules/ssh-grunt)! +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/ssm-healthchecks-iam-permissions/ssm-healthchecks-iam-permissions.md b/docs/reference/modules/terraform-aws-security/ssm-healthchecks-iam-permissions/ssm-healthchecks-iam-permissions.md index 8937034ce0..abbde11434 100644 --- a/docs/reference/modules/terraform-aws-security/ssm-healthchecks-iam-permissions/ssm-healthchecks-iam-permissions.md +++ b/docs/reference/modules/terraform-aws-security/ssm-healthchecks-iam-permissions/ssm-healthchecks-iam-permissions.md @@ -89,6 +89,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-security/tls-cert-private/tls-cert-private.md b/docs/reference/modules/terraform-aws-security/tls-cert-private/tls-cert-private.md index 792199fa26..06c4b464a7 100644 --- a/docs/reference/modules/terraform-aws-security/tls-cert-private/tls-cert-private.md +++ b/docs/reference/modules/terraform-aws-security/tls-cert-private/tls-cert-private.md @@ -173,6 +173,7 @@ the domain name (because it's private) or reaching the service to validate an HT While Let's Encrypt is not the ideal solution for the intent of this module, it's well-suited to automatically generating TLS certificates for any public services. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-server/attach-eni/attach-eni.md b/docs/reference/modules/terraform-aws-server/attach-eni/attach-eni.md index 5529e3816d..aebeba9ce3 100644 --- a/docs/reference/modules/terraform-aws-server/attach-eni/attach-eni.md +++ b/docs/reference/modules/terraform-aws-server/attach-eni/attach-eni.md @@ -67,6 +67,7 @@ attach-eni --eni-with-same-tag Name This tells the script to try find and attach an ENI with the same `Name` tag as the current EC2 Instance. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-server/disable-instance-metadata/disable-instance-metadata.md b/docs/reference/modules/terraform-aws-server/disable-instance-metadata/disable-instance-metadata.md index 0ff75c90c2..f5ba0ace5c 100644 --- a/docs/reference/modules/terraform-aws-server/disable-instance-metadata/disable-instance-metadata.md +++ b/docs/reference/modules/terraform-aws-server/disable-instance-metadata/disable-instance-metadata.md @@ -71,6 +71,7 @@ Disabling instance metadata access... This will result in subsequent calls to the Instance Metadata service to fail. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-server/ec2-backup/ec2-backup.md b/docs/reference/modules/terraform-aws-server/ec2-backup/ec2-backup.md index ba115eeaef..953b584187 100644 --- a/docs/reference/modules/terraform-aws-server/ec2-backup/ec2-backup.md +++ b/docs/reference/modules/terraform-aws-server/ec2-backup/ec2-backup.md @@ -301,6 +301,7 @@ The name of the IAM role associated with the data lifecycle manager +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-server/persistent-ebs-volume/persistent-ebs-volume.md b/docs/reference/modules/terraform-aws-server/persistent-ebs-volume/persistent-ebs-volume.md index 4f8e852baa..b83f7b37de 100644 --- a/docs/reference/modules/terraform-aws-server/persistent-ebs-volume/persistent-ebs-volume.md +++ b/docs/reference/modules/terraform-aws-server/persistent-ebs-volume/persistent-ebs-volume.md @@ -216,6 +216,7 @@ When you run this, it will produce output similar to below: Note how the script uses the device name `/dev/nvme1n1` when unmounting the device, but switches to `/dev/sdf` when detaching the device. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-server/require-instance-metadata-service-version/require-instance-metadata-service-version.md b/docs/reference/modules/terraform-aws-server/require-instance-metadata-service-version/require-instance-metadata-service-version.md index 2cbee9c4d1..6c3cf7b84e 100644 --- a/docs/reference/modules/terraform-aws-server/require-instance-metadata-service-version/require-instance-metadata-service-version.md +++ b/docs/reference/modules/terraform-aws-server/require-instance-metadata-service-version/require-instance-metadata-service-version.md @@ -94,6 +94,7 @@ Setting Instance Metadata Service version 2 state to optional } ``` +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-server/route53-helpers/route53-helpers.md b/docs/reference/modules/terraform-aws-server/route53-helpers/route53-helpers.md index 485f6d1823..93652061a3 100644 --- a/docs/reference/modules/terraform-aws-server/route53-helpers/route53-helpers.md +++ b/docs/reference/modules/terraform-aws-server/route53-helpers/route53-helpers.md @@ -71,6 +71,7 @@ Here is an example of an IAM policy your EC2 instance needs attached to its IAM Check out the [route53-helpers example](https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.4/examples/route53-helpers) to see what this looks like in action. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-server/single-server/single-server.md b/docs/reference/modules/terraform-aws-server/single-server/single-server.md index 71a6450b8b..756e2386ff 100644 --- a/docs/reference/modules/terraform-aws-server/single-server/single-server.md +++ b/docs/reference/modules/terraform-aws-server/single-server/single-server.md @@ -1315,6 +1315,7 @@ When used in combination with user_data or user_data_base64, a user_data change +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-static-assets/cloudfront/cloudfront.md b/docs/reference/modules/terraform-aws-static-assets/cloudfront/cloudfront.md index a0e92e2752..d421c91532 100644 --- a/docs/reference/modules/terraform-aws-static-assets/cloudfront/cloudfront.md +++ b/docs/reference/modules/terraform-aws-static-assets/cloudfront/cloudfront.md @@ -2853,6 +2853,7 @@ Unique identifier that specifies the AWS WAF web ACL, if any, to associate with +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-static-assets/s3-cloudfront/s3-cloudfront.md b/docs/reference/modules/terraform-aws-static-assets/s3-cloudfront/s3-cloudfront.md index c12019cc11..01ebdf5d3e 100644 --- a/docs/reference/modules/terraform-aws-static-assets/s3-cloudfront/s3-cloudfront.md +++ b/docs/reference/modules/terraform-aws-static-assets/s3-cloudfront/s3-cloudfront.md @@ -1529,6 +1529,7 @@ If you have specified whitelist in forward_cook +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-static-assets/s3-static-website/s3-static-website.md b/docs/reference/modules/terraform-aws-static-assets/s3-static-website/s3-static-website.md index 376fdd04fe..f2b1abb648 100644 --- a/docs/reference/modules/terraform-aws-static-assets/s3-static-website/s3-static-website.md +++ b/docs/reference/modules/terraform-aws-static-assets/s3-static-website/s3-static-website.md @@ -856,6 +856,7 @@ A value that can be used to chain resources to depend on the website bucket bein +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-utilities/executable-dependency/executable-dependency.md b/docs/reference/modules/terraform-aws-utilities/executable-dependency/executable-dependency.md index 06105c3047..cfc066d604 100644 --- a/docs/reference/modules/terraform-aws-utilities/executable-dependency/executable-dependency.md +++ b/docs/reference/modules/terraform-aws-utilities/executable-dependency/executable-dependency.md @@ -243,6 +243,7 @@ The path to use to run the executable. Will either be the path of the executable +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-utilities/instance-type/instance-type.md b/docs/reference/modules/terraform-aws-utilities/instance-type/instance-type.md index 5fd497c487..73608fd5db 100644 --- a/docs/reference/modules/terraform-aws-utilities/instance-type/instance-type.md +++ b/docs/reference/modules/terraform-aws-utilities/instance-type/instance-type.md @@ -157,6 +157,7 @@ The recommended instance type to use in this AWS region. This will be the first +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-utilities/join-path/join-path.md b/docs/reference/modules/terraform-aws-utilities/join-path/join-path.md index 0b83ff93d9..333a5a99e5 100644 --- a/docs/reference/modules/terraform-aws-utilities/join-path/join-path.md +++ b/docs/reference/modules/terraform-aws-utilities/join-path/join-path.md @@ -146,6 +146,7 @@ A list of folder and file names to combine into a path, using the proper path se +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-utilities/list-remove/list-remove.md b/docs/reference/modules/terraform-aws-utilities/list-remove/list-remove.md index a9dd3855b4..c57cb46ded 100644 --- a/docs/reference/modules/terraform-aws-utilities/list-remove/list-remove.md +++ b/docs/reference/modules/terraform-aws-utilities/list-remove/list-remove.md @@ -157,6 +157,7 @@ Any types represent complex values of variable type. For details, please consult +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-utilities/operating-system/operating-system.md b/docs/reference/modules/terraform-aws-utilities/operating-system/operating-system.md index ecab1ac1a8..f18dca637f 100644 --- a/docs/reference/modules/terraform-aws-utilities/operating-system/operating-system.md +++ b/docs/reference/modules/terraform-aws-utilities/operating-system/operating-system.md @@ -49,6 +49,7 @@ operating_system_name = "${module.os.name}" path_separator = "${module.os.path_separator}" ``` +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-utilities/patcher-test/patcher-test.md b/docs/reference/modules/terraform-aws-utilities/patcher-test/patcher-test.md index 770412f22a..b8aac9759d 100644 --- a/docs/reference/modules/terraform-aws-utilities/patcher-test/patcher-test.md +++ b/docs/reference/modules/terraform-aws-utilities/patcher-test/patcher-test.md @@ -139,6 +139,7 @@ Sample input for the module +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-utilities/prepare-pex-environment/prepare-pex-environment.md b/docs/reference/modules/terraform-aws-utilities/prepare-pex-environment/prepare-pex-environment.md index 84d99d5d37..1051cbd926 100644 --- a/docs/reference/modules/terraform-aws-utilities/prepare-pex-environment/prepare-pex-environment.md +++ b/docs/reference/modules/terraform-aws-utilities/prepare-pex-environment/prepare-pex-environment.md @@ -222,6 +222,7 @@ The python path that should be used for running PEX file. This should be set as +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-utilities/request-quota-increase/request-quota-increase.md b/docs/reference/modules/terraform-aws-utilities/request-quota-increase/request-quota-increase.md index 74b9e33e1c..83a476902c 100644 --- a/docs/reference/modules/terraform-aws-utilities/request-quota-increase/request-quota-increase.md +++ b/docs/reference/modules/terraform-aws-utilities/request-quota-increase/request-quota-increase.md @@ -125,6 +125,7 @@ When you run `terraform destroy` on this module, it does not affect your current existing quota requests. In other words, you don't have to worry about quotas being reset to old values; once they have been increased, they stay that way! +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-utilities/require-executable/require-executable.md b/docs/reference/modules/terraform-aws-utilities/require-executable/require-executable.md index 806b830183..863c5507b1 100644 --- a/docs/reference/modules/terraform-aws-utilities/require-executable/require-executable.md +++ b/docs/reference/modules/terraform-aws-utilities/require-executable/require-executable.md @@ -166,6 +166,7 @@ A map of the executables to the resolved path where they reside. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-utilities/run-pex-as-data-source/run-pex-as-data-source.md b/docs/reference/modules/terraform-aws-utilities/run-pex-as-data-source/run-pex-as-data-source.md index c01dba822e..467d9b9d29 100644 --- a/docs/reference/modules/terraform-aws-utilities/run-pex-as-data-source/run-pex-as-data-source.md +++ b/docs/reference/modules/terraform-aws-utilities/run-pex-as-data-source/run-pex-as-data-source.md @@ -249,6 +249,7 @@ Data source result of executing the PEX binary. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-utilities/run-pex-as-resource/run-pex-as-resource.md b/docs/reference/modules/terraform-aws-utilities/run-pex-as-resource/run-pex-as-resource.md index 085addfcc6..0804df9511 100644 --- a/docs/reference/modules/terraform-aws-utilities/run-pex-as-resource/run-pex-as-resource.md +++ b/docs/reference/modules/terraform-aws-utilities/run-pex-as-resource/run-pex-as-resource.md @@ -304,6 +304,7 @@ This output is populated when the pex script successfully runs to completion. As +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/network-acl-inbound/network-acl-inbound.md b/docs/reference/modules/terraform-aws-vpc/network-acl-inbound/network-acl-inbound.md index d80b731590..e11ebe7083 100644 --- a/docs/reference/modules/terraform-aws-vpc/network-acl-inbound/network-acl-inbound.md +++ b/docs/reference/modules/terraform-aws-vpc/network-acl-inbound/network-acl-inbound.md @@ -217,6 +217,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/network-acl-outbound/network-acl-outbound.md b/docs/reference/modules/terraform-aws-vpc/network-acl-outbound/network-acl-outbound.md index dc2a8ffdd2..7c3cafce57 100644 --- a/docs/reference/modules/terraform-aws-vpc/network-acl-outbound/network-acl-outbound.md +++ b/docs/reference/modules/terraform-aws-vpc/network-acl-outbound/network-acl-outbound.md @@ -217,6 +217,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/network-firewall/network-firewall.md b/docs/reference/modules/terraform-aws-vpc/network-firewall/network-firewall.md index 90a0d32847..8dc74e3118 100644 --- a/docs/reference/modules/terraform-aws-vpc/network-firewall/network-firewall.md +++ b/docs/reference/modules/terraform-aws-vpc/network-firewall/network-firewall.md @@ -973,6 +973,7 @@ The ID of the Network Firewall. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/port-range-calculator/port-range-calculator.md b/docs/reference/modules/terraform-aws-vpc/port-range-calculator/port-range-calculator.md index 50d4d9036c..cc37e056a6 100644 --- a/docs/reference/modules/terraform-aws-vpc/port-range-calculator/port-range-calculator.md +++ b/docs/reference/modules/terraform-aws-vpc/port-range-calculator/port-range-calculator.md @@ -174,6 +174,7 @@ Map of port ranges to the ranges to allow. This is provided as a convenience out +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/route/route.md b/docs/reference/modules/terraform-aws-vpc/route/route.md index 5e8195fa55..e9047a23cd 100644 --- a/docs/reference/modules/terraform-aws-vpc/route/route.md +++ b/docs/reference/modules/terraform-aws-vpc/route/route.md @@ -38,7 +38,7 @@ A route is a path to a specific destination. A route table contains a set of rul Routes can be either dynamic or static. Dynamic routes are learned by the route table from a routing protocol. Static routes are manually added to a route table. The route table then uses the most specific route that matches the traffic to determine how to route the traffic. Where possible, it's best to utilize dynamic routes. However, static routes are often used to route traffic between different types of environments. - +{/* BEGIN_TF_DOCS */} ## Requirements @@ -89,7 +89,7 @@ No modules. | [ids](#output_ids) | A map of IDs of the route resources. | | [states](#output_states) | A map of states of the route resources. | - +{/* END_TF_DOCS */} ## Sample Usage @@ -444,6 +444,7 @@ A map of states of the route resources. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/transit-gateway-attachment/transit-gateway-attachment.md b/docs/reference/modules/terraform-aws-vpc/transit-gateway-attachment/transit-gateway-attachment.md index 05026334f0..4141f96603 100644 --- a/docs/reference/modules/terraform-aws-vpc/transit-gateway-attachment/transit-gateway-attachment.md +++ b/docs/reference/modules/terraform-aws-vpc/transit-gateway-attachment/transit-gateway-attachment.md @@ -31,7 +31,7 @@ A transit gateway attachment is a way to connect a transit gateway (virtual rout For usage examples, check out the [examples folder](https://github.com/gruntwork-io/terraform-aws-vpc/tree/v0.28.13/examples/transit-gateway-attachment/). - +{/* BEGIN_TF_DOCS */} ## Requirements @@ -75,7 +75,7 @@ No modules. |------|-------------| | [id](#output_id) | EC2 Transit Gateway Attachment identifier. | - +{/* END_TF_DOCS */} ## Sample Usage @@ -385,6 +385,7 @@ The IDs of the Transit Gateway Route Tables. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/transit-gateway-peering-attachment-accepter/transit-gateway-peering-attachment-accepter.md b/docs/reference/modules/terraform-aws-vpc/transit-gateway-peering-attachment-accepter/transit-gateway-peering-attachment-accepter.md index 4da94680fb..213f901c10 100644 --- a/docs/reference/modules/terraform-aws-vpc/transit-gateway-peering-attachment-accepter/transit-gateway-peering-attachment-accepter.md +++ b/docs/reference/modules/terraform-aws-vpc/transit-gateway-peering-attachment-accepter/transit-gateway-peering-attachment-accepter.md @@ -27,7 +27,7 @@ A transit gateway peering attachment accepter is a way to connect two transit ga For usage examples, check out the [examples folder](https://github.com/gruntwork-io/terraform-aws-vpc/tree/v0.28.13/examples/transit-gateway-peering-attachment). - +{/* BEGIN_TF_DOCS */} ## Requirements @@ -71,7 +71,7 @@ No modules. | [peer_transit_gateway_ids](#output_peer_transit_gateway_ids) | The identifier of the peer transit gateway. | | [transit_gateway_ids](#output_transit_gateway_ids) | The identifer of the transit gateway for the accepter resources. | - +{/* END_TF_DOCS */} ## Sample Usage @@ -255,6 +255,7 @@ The identifer of the transit gateway for the accepter resources. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/transit-gateway-peering-attachment/transit-gateway-peering-attachment.md b/docs/reference/modules/terraform-aws-vpc/transit-gateway-peering-attachment/transit-gateway-peering-attachment.md index 3859369f54..8fa97c7175 100644 --- a/docs/reference/modules/terraform-aws-vpc/transit-gateway-peering-attachment/transit-gateway-peering-attachment.md +++ b/docs/reference/modules/terraform-aws-vpc/transit-gateway-peering-attachment/transit-gateway-peering-attachment.md @@ -29,7 +29,7 @@ A transit gateway peering attachment is a way to connect two transit gateways to For usage examples, check out the [examples folder](https://github.com/gruntwork-io/terraform-aws-vpc/tree/v0.28.13/examples/transit-gateway-peering-attachment/). - +{/* BEGIN_TF_DOCS */} ## Requirements @@ -71,7 +71,7 @@ No modules. |------|-------------| | [id](#output_id) | Transit Gateway Peering Attachment identifier | - +{/* END_TF_DOCS */} ## Sample Usage @@ -257,6 +257,7 @@ Transit Gateway Peering Attachment identifier +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/transit-gateway-route/transit-gateway-route.md b/docs/reference/modules/terraform-aws-vpc/transit-gateway-route/transit-gateway-route.md index 5333fa4ca3..f431364232 100644 --- a/docs/reference/modules/terraform-aws-vpc/transit-gateway-route/transit-gateway-route.md +++ b/docs/reference/modules/terraform-aws-vpc/transit-gateway-route/transit-gateway-route.md @@ -32,7 +32,7 @@ A transit gateway route is a way to route traffic between VPCs, peers, VPNs, and For usage examples, check out the [examples folder](https://github.com/gruntwork-io/terraform-aws-vpc/tree/v0.28.13/examples/transit-gateway-route/). - +{/* BEGIN_TF_DOCS */} ## Requirements @@ -72,7 +72,7 @@ No modules. |------|-------------| | [id](#output_id) | Map of ids of the transit gateway routes. | - +{/* END_TF_DOCS */} ## Sample Usage @@ -223,6 +223,7 @@ Map of ids of the transit gateway routes. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/transit-gateway/transit-gateway.md b/docs/reference/modules/terraform-aws-vpc/transit-gateway/transit-gateway.md index 4f6934805b..65f262d253 100644 --- a/docs/reference/modules/terraform-aws-vpc/transit-gateway/transit-gateway.md +++ b/docs/reference/modules/terraform-aws-vpc/transit-gateway/transit-gateway.md @@ -69,7 +69,7 @@ What follows are the steps required to configure Transit Gateway resources withi * Attach your VPCs to your Transit Gateway * Add routes between the Transit Gateways and your VPCs - +{/* BEGIN_TF_DOCS */} ## Requirements @@ -117,7 +117,7 @@ No modules. | [default_route_table_id](#output_default_route_table_id) | Transit Gateway default route table identifier. | | [id](#output_id) | Transit Gateway identifier. | - +{/* END_TF_DOCS */} ## Sample Usage @@ -439,6 +439,7 @@ Identifier of the Transit Gateway's default propagation route table. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-app-lookup/vpc-app-lookup.md b/docs/reference/modules/terraform-aws-vpc/vpc-app-lookup/vpc-app-lookup.md index 508d202c54..b7e69c91ba 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-app-lookup/vpc-app-lookup.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-app-lookup/vpc-app-lookup.md @@ -615,6 +615,7 @@ The name configured for VPC. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-app-network-acls/vpc-app-network-acls.md b/docs/reference/modules/terraform-aws-vpc/vpc-app-network-acls/vpc-app-network-acls.md index fb14ae8b95..27175f9cb5 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-app-network-acls/vpc-app-network-acls.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-app-network-acls/vpc-app-network-acls.md @@ -754,6 +754,7 @@ Use this variable to ensure the Network ACL does not get created until the VPC i +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-app/vpc-app.md b/docs/reference/modules/terraform-aws-vpc/vpc-app/vpc-app.md index ae06985587..cb4faf7680 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-app/vpc-app.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-app/vpc-app.md @@ -2422,6 +2422,7 @@ A map of all transit subnets, with the subnet ID as the key, and all `aws-subnet +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-dns-forwarder-rules/vpc-dns-forwarder-rules.md b/docs/reference/modules/terraform-aws-vpc/vpc-dns-forwarder-rules/vpc-dns-forwarder-rules.md index 468120de6d..26878c7add 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-dns-forwarder-rules/vpc-dns-forwarder-rules.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-dns-forwarder-rules/vpc-dns-forwarder-rules.md @@ -176,6 +176,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-dns-forwarder/vpc-dns-forwarder.md b/docs/reference/modules/terraform-aws-vpc/vpc-dns-forwarder/vpc-dns-forwarder.md index fb5901d848..889cdf22e5 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-dns-forwarder/vpc-dns-forwarder.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-dns-forwarder/vpc-dns-forwarder.md @@ -376,6 +376,7 @@ The secondary IP address of the DNS resolver in the origin VPC. This is the IP t +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-flow-logs/vpc-flow-logs.md b/docs/reference/modules/terraform-aws-vpc/vpc-flow-logs/vpc-flow-logs.md index 5706ff391d..91a4a1230d 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-flow-logs/vpc-flow-logs.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-flow-logs/vpc-flow-logs.md @@ -797,6 +797,7 @@ The name of the S3 bucket where flow logs are published. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-interface-endpoint/vpc-interface-endpoint.md b/docs/reference/modules/terraform-aws-vpc/vpc-interface-endpoint/vpc-interface-endpoint.md index 7636d50f8d..ddeda796ff 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-interface-endpoint/vpc-interface-endpoint.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-interface-endpoint/vpc-interface-endpoint.md @@ -8901,6 +8901,7 @@ If you have private dns enabled, then your streaming calls would automatically g +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-mgmt-network-acls/vpc-mgmt-network-acls.md b/docs/reference/modules/terraform-aws-vpc/vpc-mgmt-network-acls/vpc-mgmt-network-acls.md index 11d7146137..b9c82a30eb 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-mgmt-network-acls/vpc-mgmt-network-acls.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-mgmt-network-acls/vpc-mgmt-network-acls.md @@ -341,6 +341,7 @@ The number to use for the first rule that is created by this module. All rules i +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-mgmt/vpc-mgmt.md b/docs/reference/modules/terraform-aws-vpc/vpc-mgmt/vpc-mgmt.md index 76b8b0aedb..4053701544 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-mgmt/vpc-mgmt.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-mgmt/vpc-mgmt.md @@ -1049,6 +1049,7 @@ A null_resource that indicates that the VPC is ready, including all of its resou +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-peering-cross-accounts-accepter/vpc-peering-cross-accounts-accepter.md b/docs/reference/modules/terraform-aws-vpc/vpc-peering-cross-accounts-accepter/vpc-peering-cross-accounts-accepter.md index eafd4e3576..640bf5bd06 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-peering-cross-accounts-accepter/vpc-peering-cross-accounts-accepter.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-peering-cross-accounts-accepter/vpc-peering-cross-accounts-accepter.md @@ -315,6 +315,7 @@ Peering connection ID. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-peering-cross-accounts-requester/vpc-peering-cross-accounts-requester.md b/docs/reference/modules/terraform-aws-vpc/vpc-peering-cross-accounts-requester/vpc-peering-cross-accounts-requester.md index 2cc823a1ab..6b98c76c33 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-peering-cross-accounts-requester/vpc-peering-cross-accounts-requester.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-peering-cross-accounts-requester/vpc-peering-cross-accounts-requester.md @@ -317,6 +317,7 @@ Peering connection ID. +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-peering-external/vpc-peering-external.md b/docs/reference/modules/terraform-aws-vpc/vpc-peering-external/vpc-peering-external.md index a7f577cf1d..4ca841d3f4 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-peering-external/vpc-peering-external.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-peering-external/vpc-peering-external.md @@ -315,6 +315,7 @@ inputs = { +{/* +*/} diff --git a/docs/reference/modules/terraform-aws-vpc/vpc-peering/vpc-peering.md b/docs/reference/modules/terraform-aws-vpc/vpc-peering/vpc-peering.md index 5026a2ffda..0f028f485f 100644 --- a/docs/reference/modules/terraform-aws-vpc/vpc-peering/vpc-peering.md +++ b/docs/reference/modules/terraform-aws-vpc/vpc-peering/vpc-peering.md @@ -411,6 +411,7 @@ VPC Peering connection object +{/* +*/} diff --git a/docs/reference/services/app-orchestration/amazon-ecs-cluster.md b/docs/reference/services/app-orchestration/amazon-ecs-cluster.md index b03b9ba70a..54ebee4574 100644 --- a/docs/reference/services/app-orchestration/amazon-ecs-cluster.md +++ b/docs/reference/services/app-orchestration/amazon-ecs-cluster.md @@ -1498,6 +1498,7 @@ The CloudWatch Dashboard metric widget for the ECS cluster workers' Memory utili +{/* +*/} diff --git a/docs/reference/services/app-orchestration/amazon-ecs-fargate-cluster.md b/docs/reference/services/app-orchestration/amazon-ecs-fargate-cluster.md index 348fd0cbaa..bb49679e85 100644 --- a/docs/reference/services/app-orchestration/amazon-ecs-fargate-cluster.md +++ b/docs/reference/services/app-orchestration/amazon-ecs-fargate-cluster.md @@ -248,6 +248,7 @@ The name of the ECS cluster. +{/* +*/} diff --git a/docs/reference/services/app-orchestration/amazon-ecs-service.md b/docs/reference/services/app-orchestration/amazon-ecs-service.md index cce468eae9..fac041f5ab 100644 --- a/docs/reference/services/app-orchestration/amazon-ecs-service.md +++ b/docs/reference/services/app-orchestration/amazon-ecs-service.md @@ -3025,6 +3025,7 @@ The names of the ECS service's load balancer's target groups +{/* +*/} diff --git a/docs/reference/services/app-orchestration/amazon-eks-core-services.md b/docs/reference/services/app-orchestration/amazon-eks-core-services.md index 484dedc15c..68ea9a01a0 100644 --- a/docs/reference/services/app-orchestration/amazon-eks-core-services.md +++ b/docs/reference/services/app-orchestration/amazon-eks-core-services.md @@ -6620,6 +6620,7 @@ A list of names of Kubernetes PriorityClass objects created by this module. +{/* +*/} diff --git a/docs/reference/services/app-orchestration/amazon-eks-workers.md b/docs/reference/services/app-orchestration/amazon-eks-workers.md index 5780518414..cfd29db707 100644 --- a/docs/reference/services/app-orchestration/amazon-eks-workers.md +++ b/docs/reference/services/app-orchestration/amazon-eks-workers.md @@ -2991,6 +2991,7 @@ The list of names of the ASGs that were deployed to act as EKS workers. +{/* +*/} diff --git a/docs/reference/services/app-orchestration/amazon-eks.md b/docs/reference/services/app-orchestration/amazon-eks.md index 5d2741eaa3..804eb7780c 100644 --- a/docs/reference/services/app-orchestration/amazon-eks.md +++ b/docs/reference/services/app-orchestration/amazon-eks.md @@ -4209,6 +4209,7 @@ The ID of the AWS Security Group associated with the self-managed EKS workers. +{/* +*/} diff --git a/docs/reference/services/app-orchestration/argo-cd.md b/docs/reference/services/app-orchestration/argo-cd.md index 44f32e0e40..b3b5df853a 100644 --- a/docs/reference/services/app-orchestration/argo-cd.md +++ b/docs/reference/services/app-orchestration/argo-cd.md @@ -435,6 +435,7 @@ A list of the subnets into which the Argo CD pods will be launched. These should +{/* +*/} diff --git a/docs/reference/services/app-orchestration/auto-scaling-group-asg.md b/docs/reference/services/app-orchestration/auto-scaling-group-asg.md index 2e1a445bf4..3df0a48b60 100644 --- a/docs/reference/services/app-orchestration/auto-scaling-group-asg.md +++ b/docs/reference/services/app-orchestration/auto-scaling-group-asg.md @@ -2343,6 +2343,7 @@ The ID of the Security Group that belongs to the ASG. +{/* +*/} diff --git a/docs/reference/services/app-orchestration/ec-2-instance.md b/docs/reference/services/app-orchestration/ec-2-instance.md index e7b3e696ca..4667eae02b 100644 --- a/docs/reference/services/app-orchestration/ec-2-instance.md +++ b/docs/reference/services/app-orchestration/ec-2-instance.md @@ -1651,6 +1651,7 @@ The input parameters for the EBS volumes. +{/* +*/} diff --git a/docs/reference/services/app-orchestration/helm-service.md b/docs/reference/services/app-orchestration/helm-service.md index e82c763e9b..075851452b 100644 --- a/docs/reference/services/app-orchestration/helm-service.md +++ b/docs/reference/services/app-orchestration/helm-service.md @@ -494,6 +494,7 @@ Number of seconds to wait for Pods to become healthy before marking the deployme +{/* +*/} diff --git a/docs/reference/services/app-orchestration/karpenter.md b/docs/reference/services/app-orchestration/karpenter.md index 49e222cef6..d18ea3b6b3 100644 --- a/docs/reference/services/app-orchestration/karpenter.md +++ b/docs/reference/services/app-orchestration/karpenter.md @@ -866,6 +866,7 @@ The name of the Karpenter Node IAM Role. +{/* +*/} diff --git a/docs/reference/services/app-orchestration/kubernetes-namespace.md b/docs/reference/services/app-orchestration/kubernetes-namespace.md index ed4c6ed815..0fc4769e45 100644 --- a/docs/reference/services/app-orchestration/kubernetes-namespace.md +++ b/docs/reference/services/app-orchestration/kubernetes-namespace.md @@ -424,6 +424,7 @@ The name of the rbac role that grants read only permissions on the namespace. +{/* +*/} diff --git a/docs/reference/services/app-orchestration/kubernetes-service.md b/docs/reference/services/app-orchestration/kubernetes-service.md index abf87b9d0e..3357a42674 100644 --- a/docs/reference/services/app-orchestration/kubernetes-service.md +++ b/docs/reference/services/app-orchestration/kubernetes-service.md @@ -2059,6 +2059,7 @@ Number of seconds to wait for Pods to become healthy before marking the deployme +{/* +*/} diff --git a/docs/reference/services/app-orchestration/lambda.md b/docs/reference/services/app-orchestration/lambda.md index dd506452c5..68a2eef37a 100644 --- a/docs/reference/services/app-orchestration/lambda.md +++ b/docs/reference/services/app-orchestration/lambda.md @@ -1454,6 +1454,7 @@ Latest published version of your Lambda Function +{/* +*/} diff --git a/docs/reference/services/app-orchestration/public-static-website.md b/docs/reference/services/app-orchestration/public-static-website.md index 7614f6e11e..66e190ae39 100644 --- a/docs/reference/services/app-orchestration/public-static-website.md +++ b/docs/reference/services/app-orchestration/public-static-website.md @@ -1087,6 +1087,7 @@ The ARN of the created S3 bucket associated with the website. +{/* +*/} diff --git a/docs/reference/services/ci-cd-pipeline/ecs-deploy-runner.md b/docs/reference/services/ci-cd-pipeline/ecs-deploy-runner.md index 254ceb2f30..ad59438c3d 100644 --- a/docs/reference/services/ci-cd-pipeline/ecs-deploy-runner.md +++ b/docs/reference/services/ci-cd-pipeline/ecs-deploy-runner.md @@ -2538,6 +2538,7 @@ Security Group ID of the ECS task +{/* +*/} diff --git a/docs/reference/services/ci-cd-pipeline/jenkins.md b/docs/reference/services/ci-cd-pipeline/jenkins.md index 6c9bbff1b1..9971ddc4fc 100644 --- a/docs/reference/services/ci-cd-pipeline/jenkins.md +++ b/docs/reference/services/ci-cd-pipeline/jenkins.md @@ -1641,6 +1641,7 @@ The ID of the Security Group attached to the Jenkins EC2 Instance +{/* +*/} diff --git a/docs/reference/services/data-storage/amazon-aurora.md b/docs/reference/services/data-storage/amazon-aurora.md index d93564459e..51fe4b210e 100644 --- a/docs/reference/services/data-storage/amazon-aurora.md +++ b/docs/reference/services/data-storage/amazon-aurora.md @@ -2498,6 +2498,7 @@ ID of security group created by aurora module. +{/* +*/} diff --git a/docs/reference/services/data-storage/amazon-ecr-repositories.md b/docs/reference/services/data-storage/amazon-ecr-repositories.md index 0de07185c3..1794785b51 100644 --- a/docs/reference/services/data-storage/amazon-ecr-repositories.md +++ b/docs/reference/services/data-storage/amazon-ecr-repositories.md @@ -559,6 +559,7 @@ A list of IAM policy actions necessary for ECR write access. +{/* +*/} diff --git a/docs/reference/services/data-storage/amazon-elasti-cache-for-memcached.md b/docs/reference/services/data-storage/amazon-elasti-cache-for-memcached.md index 9c89d99be9..549bfa0336 100644 --- a/docs/reference/services/data-storage/amazon-elasti-cache-for-memcached.md +++ b/docs/reference/services/data-storage/amazon-elasti-cache-for-memcached.md @@ -487,6 +487,7 @@ The configuration endpoint to allow host discovery. +{/* +*/} diff --git a/docs/reference/services/data-storage/amazon-elasti-cache-for-redis.md b/docs/reference/services/data-storage/amazon-elasti-cache-for-redis.md index 2c5af85d62..a669d40de1 100644 --- a/docs/reference/services/data-storage/amazon-elasti-cache-for-redis.md +++ b/docs/reference/services/data-storage/amazon-elasti-cache-for-redis.md @@ -852,6 +852,7 @@ Security Group ID used for redis cluster. +{/* +*/} diff --git a/docs/reference/services/data-storage/amazon-elasticsearch.md b/docs/reference/services/data-storage/amazon-elasticsearch.md index 167f26dc3d..9ca615f413 100644 --- a/docs/reference/services/data-storage/amazon-elasticsearch.md +++ b/docs/reference/services/data-storage/amazon-elasticsearch.md @@ -1590,6 +1590,7 @@ Domain-specific endpoint for Kibana without https scheme. +{/* +*/} diff --git a/docs/reference/services/data-storage/amazon-rds-replica.md b/docs/reference/services/data-storage/amazon-rds-replica.md index 1dc03d3430..b4539b74eb 100644 --- a/docs/reference/services/data-storage/amazon-rds-replica.md +++ b/docs/reference/services/data-storage/amazon-rds-replica.md @@ -1684,6 +1684,7 @@ A list of IDs of the RDS DB instance's read replicas. +{/* +*/} diff --git a/docs/reference/services/data-storage/amazon-rds.md b/docs/reference/services/data-storage/amazon-rds.md index 249c2ca278..68ff3479d4 100644 --- a/docs/reference/services/data-storage/amazon-rds.md +++ b/docs/reference/services/data-storage/amazon-rds.md @@ -2718,6 +2718,7 @@ The ID of the Security Group that controls access to the RDS DB instance. +{/* +*/} diff --git a/docs/reference/services/data-storage/s-3-bucket.md b/docs/reference/services/data-storage/s-3-bucket.md index 074089bd40..eafdd07bd4 100644 --- a/docs/reference/services/data-storage/s-3-bucket.md +++ b/docs/reference/services/data-storage/s-3-bucket.md @@ -1256,6 +1256,7 @@ The name of the replica S3 bucket. +{/* +*/} diff --git a/docs/reference/services/landing-zone/aws-app-account-baseline-wrapper.md b/docs/reference/services/landing-zone/aws-app-account-baseline-wrapper.md index e872467369..0b85fbfc9c 100644 --- a/docs/reference/services/landing-zone/aws-app-account-baseline-wrapper.md +++ b/docs/reference/services/landing-zone/aws-app-account-baseline-wrapper.md @@ -4115,6 +4115,7 @@ A map of ARNs of the service linked roles created from +*/} diff --git a/docs/reference/services/landing-zone/aws-root-account-baseline-wrapper.md b/docs/reference/services/landing-zone/aws-root-account-baseline-wrapper.md index 74a5f1d40b..7d09670c57 100644 --- a/docs/reference/services/landing-zone/aws-root-account-baseline-wrapper.md +++ b/docs/reference/services/landing-zone/aws-root-account-baseline-wrapper.md @@ -4629,6 +4629,7 @@ A map of user name to that user's AWS Web Console password, encrypted with that +{/* +*/} diff --git a/docs/reference/services/landing-zone/aws-security-account-baseline-wrapper.md b/docs/reference/services/landing-zone/aws-security-account-baseline-wrapper.md index f29286b105..7719a5b4ec 100644 --- a/docs/reference/services/landing-zone/aws-security-account-baseline-wrapper.md +++ b/docs/reference/services/landing-zone/aws-security-account-baseline-wrapper.md @@ -4747,6 +4747,7 @@ A map of usernames to that user's AWS Web Console password, encrypted with that +{/* +*/} diff --git a/docs/reference/services/landing-zone/gruntwork-access.md b/docs/reference/services/landing-zone/gruntwork-access.md index 39776640a7..bd19233bf1 100644 --- a/docs/reference/services/landing-zone/gruntwork-access.md +++ b/docs/reference/services/landing-zone/gruntwork-access.md @@ -292,6 +292,7 @@ The name of the IAM role +{/* +*/} diff --git a/docs/reference/services/landing-zone/iam-users-and-iam-groups.md b/docs/reference/services/landing-zone/iam-users-and-iam-groups.md index 973a001e0c..007c87c0c7 100644 --- a/docs/reference/services/landing-zone/iam-users-and-iam-groups.md +++ b/docs/reference/services/landing-zone/iam-users-and-iam-groups.md @@ -1133,6 +1133,7 @@ A map of usernames to that user's AWS Web Console password, encrypted with that +{/* +*/} diff --git a/docs/reference/services/networking/elastic-load-balancer-elb.md b/docs/reference/services/networking/elastic-load-balancer-elb.md index 2c280db2b7..9fa4bd3efb 100644 --- a/docs/reference/services/networking/elastic-load-balancer-elb.md +++ b/docs/reference/services/networking/elastic-load-balancer-elb.md @@ -1052,6 +1052,7 @@ The AWS-managed DNS name assigned to the ALB. +{/* +*/} diff --git a/docs/reference/services/networking/management-vpc.md b/docs/reference/services/networking/management-vpc.md index 0daf750511..19b3dddf91 100644 --- a/docs/reference/services/networking/management-vpc.md +++ b/docs/reference/services/networking/management-vpc.md @@ -1105,6 +1105,7 @@ Indicates whether or not the VPC has finished creating +{/* +*/} diff --git a/docs/reference/services/networking/route-53-hosted-zones.md b/docs/reference/services/networking/route-53-hosted-zones.md index d520ce5cbc..12e2d7403c 100644 --- a/docs/reference/services/networking/route-53-hosted-zones.md +++ b/docs/reference/services/networking/route-53-hosted-zones.md @@ -624,6 +624,7 @@ A map of domains to resource arns and hosted zones of the created Service Discov +{/* +*/} diff --git a/docs/reference/services/networking/sns-topics.md b/docs/reference/services/networking/sns-topics.md index e5c46e8be0..5cfc7bc1d4 100644 --- a/docs/reference/services/networking/sns-topics.md +++ b/docs/reference/services/networking/sns-topics.md @@ -465,6 +465,7 @@ The ARN of the SNS topic. +{/* +*/} diff --git a/docs/reference/services/networking/virtual-private-cloud-vpc.md b/docs/reference/services/networking/virtual-private-cloud-vpc.md index 649419b1f1..1a30e05f53 100644 --- a/docs/reference/services/networking/virtual-private-cloud-vpc.md +++ b/docs/reference/services/networking/virtual-private-cloud-vpc.md @@ -3630,6 +3630,7 @@ Indicates whether or not the VPC has finished creating +{/* +*/} diff --git a/docs/reference/services/security/bastion.md b/docs/reference/services/security/bastion.md index 02f4f6c88c..a5e6a4c395 100644 --- a/docs/reference/services/security/bastion.md +++ b/docs/reference/services/security/bastion.md @@ -1073,6 +1073,7 @@ The fully qualified name of the bastion host. +{/* +*/} diff --git a/docs/reference/services/security/open-vpn.md b/docs/reference/services/security/open-vpn.md index ff3aac549c..b0df0a345c 100644 --- a/docs/reference/services/security/open-vpn.md +++ b/docs/reference/services/security/open-vpn.md @@ -1536,6 +1536,7 @@ The security group ID of the OpenVPN server. +{/* +*/} diff --git a/docs/reference/services/security/tailscale-subnet-router.md b/docs/reference/services/security/tailscale-subnet-router.md index 46702c18f1..300e874a93 100644 --- a/docs/reference/services/security/tailscale-subnet-router.md +++ b/docs/reference/services/security/tailscale-subnet-router.md @@ -1091,6 +1091,7 @@ ID of the primary security group attached to the Tailscale relay server. +{/* +*/} diff --git a/docs/reference/services/security/tls-scripts.md b/docs/reference/services/security/tls-scripts.md index 24fcf6abc3..56fff77deb 100644 --- a/docs/reference/services/security/tls-scripts.md +++ b/docs/reference/services/security/tls-scripts.md @@ -102,6 +102,7 @@ If you’ve never used the Service Catalog before, make sure to read +{/* +*/} diff --git a/docs/support.mdx b/docs/support.mdx index 49918ca9c7..714b237d86 100644 --- a/docs/support.mdx +++ b/docs/support.mdx @@ -165,9 +165,11 @@ You can access the Gruntwork billing portal using the primary billing email asso To protect the security of your account, this link will expire after 5 minutes. You can generate a new access link anytime. If you need further assistance with billing questions, contact support@gruntwork.io. +{/* +*/} diff --git a/docs/tools.md b/docs/tools.md index 3b9951db5a..d587c92c24 100644 --- a/docs/tools.md +++ b/docs/tools.md @@ -57,9 +57,11 @@ Repo Copier is a CLI tool that enables customers to replicate repository data, i +{/* +*/} diff --git a/docusaurus.config.js b/docusaurus.config.js index 146dd0101e..6412d04078 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -54,11 +54,14 @@ plugins.push(segmentPlugin) /** @type {import('@docusaurus/types').FasterConfig} */ const fasterConfig = { rspackBundler: true, + rspackPersistentCache: true, swcHtmlMinimizer: true, lightningCssMinimizer: true, swcJsLoader: true, swcJsMinimizer: true, mdxCrossCompilerCache: true, + ssgWorkerThreads: true, + gitEagerVcs: true, } /** @type {() => Promise} */ @@ -67,7 +70,8 @@ async function createConfig() { return { future: { - experimental_faster: fasterConfig, + v4: true, + faster: fasterConfig, }, title: "Gruntwork Docs", tagline: @@ -76,9 +80,10 @@ async function createConfig() { baseUrl: "/", favicon: "/favicon.ico", organizationName: "gruntwork-io", // Usually your GitHub org/user name. - projectName: "docs", // Usually your repo name., - + projectName: "docs", // Usually your repo name. stylesheets: [], + clientModules: [require.resolve("./src/clientModules/segmentShim.js")], + trailingSlash: true, customFields: { libraryIndexName: algoliaConfig ? algoliaConfig.libraryIndexName @@ -131,6 +136,37 @@ async function createConfig() { beforeDefaultRemarkPlugins: [captionsPlugin], }, blog: false, + sitemap: { + lastmod: "date", + changefreq: null, + priority: null, + // Workaround for Docusaurus 3.10: the sitemap plugin queries + // future.experimental_vcs.getFileLastUpdateInfo() with a relative + // sourceFilePath (e.g. "docs/foo.md"), but vcsGitEager indexes by + // absolute path, so every resolves to null. Resolve each + // route's sourceFilePath against the site root before letting the + // default builder run. + // TODO: remove once Docusaurus fixes the path-format mismatch. + createSitemapItems: async ({ + routes, + siteConfig, + defaultCreateSitemapItems, + }) => { + const path = require("path") + const fixRoute = (route) => { + const rel = route.metadata && route.metadata.sourceFilePath + if (rel && !path.isAbsolute(rel)) { + route.metadata = { + ...route.metadata, + sourceFilePath: path.resolve(__dirname, rel), + } + } + if (route.routes) route.routes.forEach(fixRoute) + } + routes.forEach(fixRoute) + return defaultCreateSitemapItems({routes, siteConfig}) + }, + }, theme: { customCss: require.resolve("./src/css/custom.css"), }, @@ -154,76 +190,25 @@ async function createConfig() { themeConfig: /** @type {import('@docusaurus/preset-classic').ThemeConfig} */ ({ - metadata: [ - { name: "twitter:card", content: "summary_large_image" }, - { name: "twitter:image", content: "https://docs.gruntwork.io/img/og-image.jpg" }, - ], - navbar: { - title: "", - logo: { - alt: "Gruntwork Logo", - src: "img/logo-dark.png", - srcDark: "img/logo-light.png", + algolia: algoliaConfig + ? { + appId: algoliaConfig.appId, + // Public API key: safe to commit, but still sourced from config + apiKey: algoliaConfig.apiKey, + indexName: algoliaConfig.indexName, + libraryIndexName: algoliaConfig.libraryIndexName, + contextualSearch: true, + } + : undefined, + colorMode: { + defaultMode: "light", + disableSwitch: false, + respectPrefersColorScheme: false, + }, + docs: { + sidebar: { + autoCollapseCategories: true, }, - hideOnScroll: true, - items: [ - { - type: "doc", - position: "left", - label: "Docs", - docId: "index", - }, - { - type: "doc", - label: "Reference", - docId: "2.0/reference/index", - }, - { - type: "doc", - label: "Way", - docId: "2.0/way/intro/welcome", - }, - { - type: "doc", - label: "Release Notes", - docId: "guides/stay-up-to-date/index", - }, - { - href: "https://github.com/gruntwork-io/knowledge-base/discussions", - label: "Knowledge Base", - position: "right", - }, - { - href: "/support", - label: "Support", - position: "right", - }, - { - href: "https://app.gruntwork.io", - label: "Sign In", - position: "right", - }, - { - type: "dropdown", - label: "More…", - position: "right", - id: "more_dropdown", - items: [ - { - href: "https://github.com/gruntwork-io/knowledge-base/discussions", - label: "Knowledge Base", - }, - { - href: "/support", - label: "Support", - }, - { - href: "https://app.gruntwork.io", - label: "Sign In", - }, - ], - }, - ], }, footer: { style: "dark", @@ -233,7 +218,7 @@ async function createConfig() { items: [ { label: "Gruntwork.io", - href: "https://gruntwork.io", + href: "https://gruntwork.io/", }, { label: "Blog", @@ -299,15 +284,15 @@ async function createConfig() { }, { label: "Gruntwork Releases", - to: "/guides/stay-up-to-date", + to: "/guides/stay-up-to-date/", }, { label: "Style Guides", - to: "/guides/style", + to: "/guides/style/", }, { label: "Support", - href: "/support", + href: "/support/", }, ], }, @@ -331,15 +316,85 @@ async function createConfig() { ], copyright: `© 2020 – ${new Date().getFullYear()} Gruntwork, Inc.`, }, - docs: { - sidebar: { - autoCollapseCategories: true, + metadata: [ + { name: "twitter:card", content: "summary_large_image" }, + { name: "twitter:image", content: "https://docs.gruntwork.io/img/og-image.jpg" }, + // https://docusaurus.io/docs/2.x/seo#global-metadata + // This would become in the generated HTML + { + name: "keywords", + content: + "gruntwork, gruntwork platform, aws accelerator, terragrunt scale, aws iac library, aws account factory, aws platform architecture, infrastructure as code, iac, gruntwork pipelines, drift detection, patcher, opentofu, tofu, terraform, terragrunt, terratest, aws", }, - }, - colorMode: { - defaultMode: "light", - disableSwitch: false, - respectPrefersColorScheme: false, + { name: "buildVersion", content: buildVersion }, + { name: "buildTime", content: new Date().toString() }, + ], + navbar: { + title: "", + logo: { + alt: "Gruntwork Logo", + src: "img/logo-dark.png", + srcDark: "img/logo-light.png", + }, + hideOnScroll: true, + items: [ + { + type: "doc", + position: "left", + label: "Docs", + docId: "index", + }, + { + type: "doc", + label: "Reference", + docId: "2.0/reference/index", + }, + { + type: "doc", + label: "Way", + docId: "2.0/way/intro/welcome", + }, + { + type: "doc", + label: "Release Notes", + docId: "guides/stay-up-to-date/index", + }, + { + href: "https://github.com/gruntwork-io/knowledge-base/discussions", + label: "Knowledge Base", + position: "right", + }, + { + href: "/support", + label: "Support", + position: "right", + }, + { + href: "https://app.gruntwork.io", + label: "Sign In", + position: "right", + }, + { + type: "dropdown", + label: "More…", + position: "right", + id: "more_dropdown", + items: [ + { + href: "https://github.com/gruntwork-io/knowledge-base/discussions", + label: "Knowledge Base", + }, + { + href: "/support", + label: "Support", + }, + { + href: "https://app.gruntwork.io", + label: "Sign In", + }, + ], + }, + ], }, prism: { theme: lightCodeTheme, @@ -354,28 +409,7 @@ async function createConfig() { "docker", ], }, - algolia: algoliaConfig - ? { - appId: algoliaConfig.appId, - // Public API key: safe to commit, but still sourced from config - apiKey: algoliaConfig.apiKey, - indexName: algoliaConfig.indexName, - libraryIndexName: algoliaConfig.libraryIndexName, - contextualSearch: true, - } - : undefined, zoomSelector: ".markdown :not(em) > img:not(.no-zoom)", - metadata: [ - // https://docusaurus.io/docs/2.x/seo#global-metadata - // This would become in the generated HTML - { - name: "keywords", - content: - "gruntwork, gruntwork platform, aws accelerator, terragrunt scale, aws iac library, aws account factory, aws platform architecture, infrastructure as code, iac, gruntwork pipelines, drift detection, patcher, opentofu, tofu, terraform, terragrunt, terratest, aws", - }, - { name: "buildVersion", content: buildVersion }, - { name: "buildTime", content: new Date().toString() }, - ], }), } } diff --git a/jest.config.js b/jest.config.js index d076645e87..73e1acf288 100644 --- a/jest.config.js +++ b/jest.config.js @@ -9,4 +9,5 @@ module.exports = { coverageDirectory: "coverage", coverageProvider: "v8", preset: "ts-jest", + testPathIgnorePatterns: ["/node_modules/", "/.claude/", "/build/", "/.docusaurus/"], } diff --git a/package.json b/package.json index 1fbc860ac7..9aa6ce6c2a 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "config": "^3.3.6", "env-cmd": "^10.1.0", "path": "^0.12.7", - "plugin-image-zoom": "ataft/plugin-image-zoom", + "plugin-image-zoom": "https://github.com/ataft/plugin-image-zoom.git#8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de", "prism-react-renderer": "^2.1.0", "react": "^18.2.0", "react-dom": "^18.2.1", @@ -53,13 +53,14 @@ "@docusaurus/module-type-aliases": "^3.7.0", "@docusaurus/tsconfig": "3.7.0", "@docusaurus/types": "^3.7.0", + "@types/config": "^3.3.5", "cspell": "^8.19.4", "husky": "^9.1.7", "jest": "^27.4.7", "onchange": "^7.1.0", "ts-node": "^10.7.0", "tsconfig-paths": "^3.14.1", - "typescript": "^5.2.2", + "typescript": "^6.0.0", "webpack-cli": "^5.1.4", "yargs": "^17.4.0" }, diff --git a/scripts/vercelbuild.sh b/scripts/vercelbuild.sh index 1a827e3205..4184e12db8 100644 --- a/scripts/vercelbuild.sh +++ b/scripts/vercelbuild.sh @@ -1,6 +1,12 @@ #!/bin/bash +# Vercel clones with --depth 1 by default. Docusaurus needs full git history to +# derive each page's lastmod date for the sitemap (future.faster.gitEagerVcs is +# on, sitemap.lastmod is "date"). Without this fetch, dates collapse to the +# deploy commit. The `|| true` keeps already-deep clones from failing the build. +git fetch --unshallow --filter=blob:none || true + # Read the entire contents of package.json into a variable package_json=$(cat package.json) diff --git a/src/clientModules/segmentShim.js b/src/clientModules/segmentShim.js new file mode 100644 index 0000000000..8eeb91f161 --- /dev/null +++ b/src/clientModules/segmentShim.js @@ -0,0 +1,9 @@ +// Ensures window.analytics exists before @twilio-labs/docusaurus-plugin-segment's +// onRouteDidUpdate handler runs. The plugin (v0.1.0, unmaintained) registers +// its client module in Docusaurus 3 dev mode even though the inline init +// snippet is only injected in production, leaving window.analytics undefined. +// This shim also guards production against ad-blockers/CSP that prevent the +// Segment loader from initializing the queue. +if (typeof window !== 'undefined' && !window.analytics) { + window.analytics = new Proxy({}, {get: () => () => {}}); +} diff --git a/src/components/CustomizableValue.tsx b/src/components/CustomizableValue.tsx index 88b64d6567..260fe2475a 100644 --- a/src/components/CustomizableValue.tsx +++ b/src/components/CustomizableValue.tsx @@ -19,7 +19,6 @@ export const parseCustomizableValuesToString = (content: string): string => { const storedValue = storage?.getItem(value); content = content.replace(`\$\$${value}\$\$`, storedValue || `<${value}>`); } - console.log({content}) return content; } diff --git a/src/theme/CodeBlock/Buttons/CopyButton/index.tsx b/src/theme/CodeBlock/Buttons/CopyButton/index.tsx new file mode 100644 index 0000000000..1433e14910 --- /dev/null +++ b/src/theme/CodeBlock/Buttons/CopyButton/index.tsx @@ -0,0 +1,89 @@ +import { + useCallback, + useState, + useRef, + useEffect, + type ReactNode, +} from 'react'; +import clsx from 'clsx'; +import {translate} from '@docusaurus/Translate'; +import {useCodeBlockContext} from '@docusaurus/theme-common/internal'; +import Button from '@theme/CodeBlock/Buttons/Button'; +import type {Props} from '@theme/CodeBlock/Buttons/CopyButton'; +import IconCopy from '@theme/Icon/Copy'; +import IconSuccess from '@theme/Icon/Success'; +import {parseCustomizableValuesToString} from '@site/src/components/CustomizableValue'; + +import styles from './styles.module.css'; + +function title() { + return translate({ + id: 'theme.CodeBlock.copy', + message: 'Copy', + description: 'The copy button label on code blocks', + }); +} + +function ariaLabel(isCopied: boolean) { + return isCopied + ? translate({ + id: 'theme.CodeBlock.copied', + message: 'Copied', + description: 'The copied button label on code blocks', + }) + : translate({ + id: 'theme.CodeBlock.copyButtonAriaLabel', + message: 'Copy code to clipboard', + description: 'The ARIA label for copy code blocks button', + }); +} + +async function copyToClipboard(text: string) { + if (navigator.clipboard) { + return navigator.clipboard.writeText(text); + } + const {default: copy} = await import('copy-text-to-clipboard'); + return copy(text); +} + +function useCopyButton() { + const { + metadata: {code}, + } = useCodeBlockContext(); + const [isCopied, setIsCopied] = useState(false); + const copyTimeout = useRef(undefined); + + const copyCode = useCallback(() => { + copyToClipboard(parseCustomizableValuesToString(code)).then(() => { + setIsCopied(true); + copyTimeout.current = window.setTimeout(() => { + setIsCopied(false); + }, 1000); + }); + }, [code]); + + useEffect(() => () => window.clearTimeout(copyTimeout.current), []); + + return {copyCode, isCopied}; +} + +export default function CopyButton({className}: Props): ReactNode { + const {copyCode, isCopied} = useCopyButton(); + + return ( + + ); +} diff --git a/src/theme/CodeBlock/CopyButton/styles.module.css b/src/theme/CodeBlock/Buttons/CopyButton/styles.module.css similarity index 79% rename from src/theme/CodeBlock/CopyButton/styles.module.css rename to src/theme/CodeBlock/Buttons/CopyButton/styles.module.css index d5268e900b..c9e0ac5a3b 100644 --- a/src/theme/CodeBlock/CopyButton/styles.module.css +++ b/src/theme/CodeBlock/Buttons/CopyButton/styles.module.css @@ -1,3 +1,10 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + :global(.theme-code-block:hover) .copyButtonCopied { opacity: 1 !important; } diff --git a/src/theme/CodeBlock/Content/Element.tsx b/src/theme/CodeBlock/Content/Element.tsx deleted file mode 100644 index eef574172a..0000000000 --- a/src/theme/CodeBlock/Content/Element.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react'; -import clsx from 'clsx'; -import Container from '@theme/CodeBlock/Container'; -import type {Props} from '@theme/CodeBlock/Content/Element'; - -import styles from './styles.module.css'; - -//
 tags in markdown map to CodeBlocks. They may contain JSX children. When
-// the children is not a simple string, we just return a styled block without
-// actually highlighting.
-export default function CodeBlockJSX({
-  children,
-  className,
-}: Props): JSX.Element {
-  return (
-    
-      {children}
-    
-  );
-}
diff --git a/src/theme/CodeBlock/Content/String.tsx b/src/theme/CodeBlock/Content/String.tsx
deleted file mode 100644
index d4229d6ffa..0000000000
--- a/src/theme/CodeBlock/Content/String.tsx
+++ /dev/null
@@ -1,112 +0,0 @@
-import React from 'react';
-import clsx from 'clsx';
-import {useThemeConfig, usePrismTheme} from '@docusaurus/theme-common';
-import {
-  parseCodeBlockTitle,
-  parseLanguage,
-  parseLines,
-  containsLineNumbers,
-  useCodeWordWrap,
-} from '@docusaurus/theme-common/internal';
-import {Highlight, type Language} from 'prism-react-renderer';
-import Line from '@theme/CodeBlock/Line';
-import CopyButton from '@theme/CodeBlock/CopyButton';
-import WordWrapButton from '@theme/CodeBlock/WordWrapButton';
-import Container from '@theme/CodeBlock/Container';
-import type {Props} from '@theme/CodeBlock/Content/String';
-import { parseCustomizableValues } from '@site/src/components/CustomizableValue';
-import styles from './styles.module.css';
-
-// Prism languages are always lowercase
-// We want to fail-safe and allow both "php" and "PHP"
-// See https://github.com/facebook/docusaurus/issues/9012
-function normalizeLanguage(language: string | undefined): string | undefined {
-  return language?.toLowerCase();
-}
-
-export default function CodeBlockString({
-  children,
-  className: blockClassName = '',
-  metastring,
-  title: titleProp,
-  showLineNumbers: showLineNumbersProp,
-  language: languageProp,
-}: Props): JSX.Element {
-  const {
-    prism: {defaultLanguage, magicComments},
-  } = useThemeConfig();
-  const language = normalizeLanguage(
-    languageProp ?? parseLanguage(blockClassName) ?? defaultLanguage,
-  );
-
-  const prismTheme = usePrismTheme();
-  const wordWrap = useCodeWordWrap();
-
-  // We still parse the metastring in case we want to support more syntax in the
-  // future. Note that MDX doesn't strip quotes when parsing metastring:
-  // "title=\"xyz\"" => title: "\"xyz\""
-  const title = parseCodeBlockTitle(metastring) || titleProp;
-
-  const {lineClassNames, code} = parseLines(children, {
-    metastring,
-    language,
-    magicComments,
-  });
-  const showLineNumbers =
-    showLineNumbersProp ?? containsLineNumbers(metastring);
-
-  return (
-    
-      {title && 
{parseCustomizableValues(title)}
} -
- - {({className, style, tokens, getLineProps, getTokenProps}) => ( -
-              
-                {tokens.map((line, i) => (
-                  
-                ))}
-              
-            
- )} -
-
- {(wordWrap.isEnabled || wordWrap.isCodeScrollable) && ( - wordWrap.toggle()} - isEnabled={wordWrap.isEnabled} - /> - )} - -
-
-
- ); -} diff --git a/src/theme/CodeBlock/Content/styles.module.css b/src/theme/CodeBlock/Content/styles.module.css deleted file mode 100644 index c2103cd7ea..0000000000 --- a/src/theme/CodeBlock/Content/styles.module.css +++ /dev/null @@ -1,80 +0,0 @@ -.codeBlockContent { - position: relative; - /* rtl:ignore */ - direction: ltr; - border-radius: inherit; -} - -.codeBlockTitle { - border-bottom: 1px solid var(--ifm-color-emphasis-300); - font-size: var(--ifm-code-font-size); - font-weight: 500; - padding: 0.75rem var(--ifm-pre-padding); - border-top-left-radius: inherit; - border-top-right-radius: inherit; -} - -.codeBlock { - --ifm-pre-background: var(--prism-background-color); - margin: 0; - padding: 0; -} - -.codeBlockTitle + .codeBlockContent .codeBlock { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.codeBlockStandalone { - padding: 0; -} - -.codeBlockLines { - font: inherit; - /* rtl:ignore */ - float: left; - min-width: 100%; - padding: var(--ifm-pre-padding); -} - -.codeBlockLinesWithNumbering { - display: table; - padding: var(--ifm-pre-padding) 0; -} - -@media print { - .codeBlockLines { - white-space: pre-wrap; - } -} - -.buttonGroup { - display: flex; - column-gap: 0.2rem; - position: absolute; - /* rtl:ignore */ - right: calc(var(--ifm-pre-padding) / 2); - top: calc(var(--ifm-pre-padding) / 2); -} - -.buttonGroup button { - display: flex; - align-items: center; - background: var(--prism-background-color); - color: var(--prism-color); - border: 1px solid var(--ifm-color-emphasis-300); - border-radius: var(--ifm-global-radius); - padding: 0.4rem; - line-height: 0; - transition: opacity var(--ifm-transition-fast) ease-in-out; - opacity: 0; -} - -.buttonGroup button:focus-visible, -.buttonGroup button:hover { - opacity: 1 !important; -} - -:global(.theme-code-block:hover) .buttonGroup button { - opacity: 0.4; -} diff --git a/src/theme/CodeBlock/CopyButton/index.tsx b/src/theme/CodeBlock/CopyButton/index.tsx deleted file mode 100644 index 653d7ea182..0000000000 --- a/src/theme/CodeBlock/CopyButton/index.tsx +++ /dev/null @@ -1,59 +0,0 @@ -import React, {useCallback, useState, useRef, useEffect} from 'react'; -import clsx from 'clsx'; -import copy from 'copy-text-to-clipboard'; -import {translate} from '@docusaurus/Translate'; -import type {Props} from '@theme/CodeBlock/CopyButton'; -import IconCopy from '@theme/Icon/Copy'; -import IconSuccess from '@theme/Icon/Success'; - -import styles from './styles.module.css'; -import { parseCustomizableValuesToString } from '@site/src/components/CustomizableValue'; - -export default function CopyButton({code, className}: Props): JSX.Element { - const [isCopied, setIsCopied] = useState(false); - const copyTimeout = useRef(undefined); - const handleCopyCode = useCallback(() => { - copy(parseCustomizableValuesToString(code)); - setIsCopied(true); - copyTimeout.current = window.setTimeout(() => { - setIsCopied(false); - }, 1000); - }, [code]); - - useEffect(() => () => window.clearTimeout(copyTimeout.current), []); - - return ( - - ); -} diff --git a/src/theme/CodeBlock/Line/index.tsx b/src/theme/CodeBlock/Line/index.tsx index e452ae691b..3cf4f75b29 100644 --- a/src/theme/CodeBlock/Line/index.tsx +++ b/src/theme/CodeBlock/Line/index.tsx @@ -1,78 +1,90 @@ +import React, {cloneElement, type ReactElement, type ReactNode} from 'react'; import clsx from 'clsx'; +import LineToken from '@theme/CodeBlock/Line/Token'; import type {Props} from '@theme/CodeBlock/Line'; -import { cloneElement } from 'react'; import styles from './styles.module.css'; import CustomizableValue from '../../../components/CustomizableValue'; +type Token = Props['line'][number]; + +function LineBreak() { + return
; +} + +function fixLineBreak(line: Token[]) { + const singleLineBreakToken = + line.length === 1 && line[0]!.content === '\n' ? line[0] : undefined; + if (singleLineBreakToken) { + return [{...singleLineBreakToken, content: ''}]; + } + return line; +} + /** - * replaceCustomizeableValues takes a list of tokens and identifies customizable values - * marked by a start and end token, '$$'. - * It returns a new list of tokens with the customizable values replaced with a CustomizableValue component. - * If a customizable value begins or ends in the middle of a token, the token is split into two tokens. + * Scans a list of rendered tokens for `$$id$$` markers (which may straddle + * token boundaries) and replaces them with . + * Surrounding token elements are cloned so their styling/classes are preserved + * when split. + * + * Caveat: cloneElement preserves all original props on each split chunk, + * including the upstream `line` and `token` props that LineToken receives. + * That means siblings produced from a single split share the same `token` + * reference (which still describes the unsplit content). Today's upstream + * LineToken (Docusaurus 3.x) only forwards rest-props onto a , so this + * is invisible. If a future Docusaurus uses `token` for ARIA/data attributes + * or content-aware behavior, we'd need to synthesize a fresh `token` per + * chunk (e.g. {...token, content: captured}) to avoid duplicate or mismatched + * metadata across the split spans. */ -function replaceCustomizeableValues(tokens) { - // The list of tokens including the customizable value components - let newTokens = []; - // A string that is being built up to capture the content of the current token, used to create a new token +function replaceCustomizeableValues(tokens: ReactElement[]): ReactNode[] { + const newTokens: ReactNode[] = []; let captured = ''; - // A boolean indicating that we are currently within a customizable value let withinCustomizableValue = false; - - // A boolean indicating that we should skip the first character of the next token let skipFirstChar = false; - // Loop over each token for (let i = 0; i < tokens.length; i++) { - let token = tokens[i]; - let nextToken = i < tokens.length - 1 ? tokens[i + 1] : null; + const token = tokens[i]!; + const nextToken = i < tokens.length - 1 ? tokens[i + 1] : null; - let content = token.props.children; + const content: string = token.props.children ?? ''; - // Loop over each character in the token let initialIndex = 0; if (skipFirstChar) { - // Start the loop at 1 to skip the first character initialIndex = 1; skipFirstChar = false; } for (let j = initialIndex; j < content.length; j++) { - // The current charcter and the next character - // The next character may be in the next token, so we need to look ahead - let currentChar = content[j]; + const currentChar = content[j]; let nextChar = j < content.length - 1 ? content[j + 1] : null; - // Track if we used the next token to get the next character let usedNextToken = false; - if (nextChar == null && nextToken != null && nextToken.props.children.length > 0) { + if ( + nextChar == null && + nextToken != null && + (nextToken.props.children?.length ?? 0) > 0 + ) { nextChar = nextToken.props.children[0]; usedNextToken = true; } - // If the current and next characters are both '$', we have found the start or end of a customizable value if (currentChar === '$' && nextChar === '$') { if (withinCustomizableValue) { - // We have found the end of a customizable value, create a new token for the customizable value newTokens.push( + />, ); } else if (captured.length > 0) { - // We have found the start of a customizable value, if we have captured any content, create a new token - // to preserve the previous content - let newToken = cloneElement(token, {key: newTokens.length}, captured) - newTokens.push(newToken) + newTokens.push( + cloneElement(token, {key: newTokens.length}, captured), + ); } - // Reset the captured content and toggle the withinCustomizableValue flag captured = ''; withinCustomizableValue = !withinCustomizableValue; - // Skip the next two characters in this token, which will be the opening or closing $$ j += 2; - // If the marker was split across two tokens, we need to skip the first character of the next token - // to remove it from the output skipFirstChar = usedNextToken; if (j >= content.length) { break; @@ -81,8 +93,7 @@ function replaceCustomizeableValues(tokens) { captured += content[j]; } if (captured.length > 0 && !withinCustomizableValue) { - let newToken = cloneElement(token, {key: newTokens.length}, captured) - newTokens.push(newToken) + newTokens.push(cloneElement(token, {key: newTokens.length}, captured)); captured = ''; } } @@ -90,27 +101,29 @@ function replaceCustomizeableValues(tokens) { } export default function CodeBlockLine({ - line, + line: lineProp, classNames, showLineNumbers, getLineProps, getTokenProps, -}: Props): JSX.Element { - if (line.length === 1 && line[0]!.content === '\n') { - line[0]!.content = ''; - } - +}: Props): ReactNode { + const line = fixLineBreak(lineProp); const lineProps = getLineProps({ line, className: clsx(classNames, showLineNumbers && styles.codeLine), }); - const lineTokens = line.map((token, key) => ( - - )); + const lineTokens = line.map((token, key) => { + const tokenProps = getTokenProps({token}); + return ( + + {tokenProps.children} + + ); + }); return ( - +
{showLineNumbers ? ( <> @@ -119,7 +132,7 @@ export default function CodeBlockLine({ ) : ( replaceCustomizeableValues(lineTokens) )} -
-
+ +
); } diff --git a/src/theme/CodeBlock/Title/index.tsx b/src/theme/CodeBlock/Title/index.tsx new file mode 100644 index 0000000000..b0a6e8435a --- /dev/null +++ b/src/theme/CodeBlock/Title/index.tsx @@ -0,0 +1,19 @@ +import type {ReactNode} from 'react'; +import type {Props} from '@theme/CodeBlock/Title'; +import {parseCustomizableValues} from '@site/src/components/CustomizableValue'; + +// This swizzle intentionally returns the title content unwrapped. The parent +// CodeBlockLayout in @docusaurus/theme-classic renders us as: +// +//
{metadata.title}
+// +// so the styled wrapper comes from the parent slot. If a future Docusaurus +// upgrade changes that contract (e.g. expects Title to render its own +// wrapper), code-block titles will lose their styling — restore the wrapper +// here at that point. +export default function CodeBlockTitle({children}: Props): ReactNode { + if (typeof children === 'string') { + return parseCustomizableValues(children); + } + return children; +} diff --git a/tests/scripts/sidebar-lib.spec.ts b/tests/scripts/sidebar-lib.spec.ts index e18b2669cf..239e011f71 100644 --- a/tests/scripts/sidebar-lib.spec.ts +++ b/tests/scripts/sidebar-lib.spec.ts @@ -8,19 +8,19 @@ const { toOutputDocId, } = require("../../scripts/sidebar-lib") -function sampleDataPath(filepath) { +function sampleDataPath(filepath: string) { return path.resolve( path.join("tests/sample-data/scripts/sidebar-data", filepath) ) } -function docId(filepath) { +function docId(filepath: string) { return path.join("tests/sample-data/scripts/sidebar-data", filepath) } -function findSidebarSectionByName(sidebar, name) { +function findSidebarSectionByName(sidebar: any[], name: string) { const sectionObj = sidebar.find( - (item) => typeof item === "object" && item[name] !== undefined + (item: any) => typeof item === "object" && item[name] !== undefined ) return sectionObj[name] } @@ -121,7 +121,7 @@ describe("Script:generate-sidebar", () => { const sidebars = await generateMultiSidebar(dirs, { backButton: "Back", }) - Object.values(sidebars).forEach((sidebar) => { + Object.values(sidebars).forEach((sidebar: any) => { const backButton = sidebar[0] expect(backButton.type).toBe("link") expect(backButton.label).toBe("Back") diff --git a/tsconfig.json b/tsconfig.json index c0ee3f0ec2..ccc26a1250 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "extends": "@docusaurus/tsconfig", "compilerOptions": { "baseUrl": ".", - "types": ["jest", "node"] + "ignoreDeprecations": "6.0", + "types": ["jest", "node", "config"] } -} \ No newline at end of file +} diff --git a/yarn.lock b/yarn.lock index 84d86236dc..d7cdb93b41 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,65 +2,88 @@ # yarn lockfile v1 -"@algolia/autocomplete-core@1.17.9": - version "1.17.9" - resolved "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.17.9.tgz" - integrity sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ== +"@algolia/abtesting@1.18.1": + version "1.18.1" + resolved "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.18.1.tgz" + integrity sha512-aehCadlWOGvrT91KUIZpC0MbB8KBW9yUuvTJFd2xesR7le/IsT4nJUnjCCZ4ZqZCeTcPHPV5mo//fZ5oxcSVYw== + dependencies: + "@algolia/client-common" "5.52.1" + "@algolia/requester-browser-xhr" "5.52.1" + "@algolia/requester-fetch" "5.52.1" + "@algolia/requester-node-http" "5.52.1" + +"@algolia/autocomplete-core@1.19.2": + version "1.19.2" + resolved "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.19.2.tgz" + integrity sha512-mKv7RyuAzXvwmq+0XRK8HqZXt9iZ5Kkm2huLjgn5JoCPtDy+oh9yxUMfDDaVCw0oyzZ1isdJBc7l9nuCyyR7Nw== + dependencies: + "@algolia/autocomplete-plugin-algolia-insights" "1.19.2" + "@algolia/autocomplete-shared" "1.19.2" + +"@algolia/autocomplete-core@^1.19.2": + version "1.19.8" + resolved "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.19.8.tgz" + integrity sha512-3YEorYg44niXcm7gkft3nXYItHd44e8tmh4D33CTszPgP0QWkaLEaFywiNyJBo7UL/mqObA/G9RYuU7R8tN1IA== dependencies: - "@algolia/autocomplete-plugin-algolia-insights" "1.17.9" - "@algolia/autocomplete-shared" "1.17.9" + "@algolia/autocomplete-plugin-algolia-insights" "1.19.8" + "@algolia/autocomplete-shared" "1.19.8" -"@algolia/autocomplete-plugin-algolia-insights@1.17.9": - version "1.17.9" - resolved "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.9.tgz" - integrity sha512-u1fEHkCbWF92DBeB/KHeMacsjsoI0wFhjZtlCq2ddZbAehshbZST6Hs0Avkc0s+4UyBGbMDnSuXHLuvRWK5iDQ== +"@algolia/autocomplete-plugin-algolia-insights@1.19.2": + version "1.19.2" + resolved "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.19.2.tgz" + integrity sha512-TjxbcC/r4vwmnZaPwrHtkXNeqvlpdyR+oR9Wi2XyfORkiGkLTVhX2j+O9SaCCINbKoDfc+c2PB8NjfOnz7+oKg== dependencies: - "@algolia/autocomplete-shared" "1.17.9" + "@algolia/autocomplete-shared" "1.19.2" -"@algolia/autocomplete-preset-algolia@1.17.9": - version "1.17.9" - resolved "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.9.tgz" - integrity sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ== +"@algolia/autocomplete-plugin-algolia-insights@1.19.8": + version "1.19.8" + resolved "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.19.8.tgz" + integrity sha512-ZvJWO8ZZJDpc1LNM2TTBdmQsZBLMR4rU5iNR2OYvEeFBiaf/0ESnRSSLQbryarJY4SVxtoz6A2ZtDMNM+iQEAA== dependencies: - "@algolia/autocomplete-shared" "1.17.9" + "@algolia/autocomplete-shared" "1.19.8" + +"@algolia/autocomplete-shared@1.19.2": + version "1.19.2" + resolved "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.19.2.tgz" + integrity sha512-jEazxZTVD2nLrC+wYlVHQgpBoBB5KPStrJxLzsIFl6Kqd1AlG9sIAGl39V5tECLpIQzB3Qa2T6ZPJ1ChkwMK/w== -"@algolia/autocomplete-shared@1.17.9": - version "1.17.9" - resolved "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.9.tgz" - integrity sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ== +"@algolia/autocomplete-shared@1.19.8": + version "1.19.8" + resolved "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.19.8.tgz" + integrity sha512-h5hf2t8ejF6vlOgvLaZzQbWs5SyH2z4PAWygNAvvD/2RI29hdQ54ldUGwqVuj9Srs+n8XUKTPUqb7fvhBhQrnQ== "@algolia/cache-browser-local-storage@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.27.0.tgz#fed0538982fd21858f452f176a7f1678bdc91c55" + resolved "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.27.0.tgz" integrity sha512-YGog2s57sO20lvpa+hv5XLAAmiTI1kHsCMRtPVfiaOdIQnvRla21lfH08onqEbZihOPVI8GULwt79zQB2ymKzg== dependencies: "@algolia/cache-common" "4.27.0" "@algolia/cache-common@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.27.0.tgz#fa49e1be284182dc7124447bea0157781ff03763" + resolved "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.27.0.tgz" integrity sha512-Sr8zjNXj82p6lO4W9CdzfF0m0/9h/H6VAdSHOTtimm/cTzXIYXRI2IZq7+Nt2ljJ7Ukx+7dIFcxQjE57eQSPsw== "@algolia/cache-in-memory@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.27.0.tgz#0f001a6208ad68dbc2fbbfaf6ca69367b7f81b3c" + resolved "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.27.0.tgz" integrity sha512-abgMRTcVD0IllNvMM9JFhxtyLn1v6Ey7mQ7+BGS3JCzvkCX7KZqlS0BIuVUDgx9sPIfOeNsG/awGzMmP50TwZw== dependencies: "@algolia/cache-common" "4.27.0" -"@algolia/client-abtesting@5.20.1": - version "5.20.1" - resolved "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.20.1.tgz" - integrity sha512-73pnrUixMVnfjgldxhRi5eYLraMt95/MhQHevoFtqwy+t2hfayxYBZXJ2k6JJDld8UmjcWwq3wXnvZJCOm7vZA== +"@algolia/client-abtesting@5.52.1": + version "5.52.1" + resolved "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.52.1.tgz" + integrity sha512-HmXOGBOAOJPounpBzBpuY0zDYeiCpxgHnQmuA7JO6ScukcBdGp3/XM9zJk5pJx/xNGD68mbPGXWpDxGtl6BwDQ== dependencies: - "@algolia/client-common" "5.20.1" - "@algolia/requester-browser-xhr" "5.20.1" - "@algolia/requester-fetch" "5.20.1" - "@algolia/requester-node-http" "5.20.1" + "@algolia/client-common" "5.52.1" + "@algolia/requester-browser-xhr" "5.52.1" + "@algolia/requester-fetch" "5.52.1" + "@algolia/requester-node-http" "5.52.1" "@algolia/client-account@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.27.0.tgz#d0c8e2dfd22806c5238efe8d01431e4b593ed549" + resolved "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.27.0.tgz" integrity sha512-sSHxwrKTKJrwfoR/LcQJZfmiWJcM5d9Rp7afMChxOcdGdkSdIwrNBC8SCcHRenA3GsZ6mg+j6px7KWYxJ34btA== dependencies: "@algolia/client-common" "4.27.0" @@ -69,7 +92,7 @@ "@algolia/client-analytics@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.27.0.tgz#dc782c08d121cd7c71bc5fa5143d6abe14c73e36" + resolved "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.27.0.tgz" integrity sha512-MqIDyxODljn9ZC4oqjQD0kez2a4zjIJ9ywA/b7cIiUiK/tDjZNTVjYd9WXMKQlXnWUwfrfXJZClVVqN1iCXS+Q== dependencies: "@algolia/client-common" "4.27.0" @@ -77,127 +100,127 @@ "@algolia/requester-common" "4.27.0" "@algolia/transporter" "4.27.0" -"@algolia/client-analytics@5.20.1": - version "5.20.1" - resolved "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.20.1.tgz" - integrity sha512-BRiyL+AwPfGTlo3HbrFDMeTK2z5SaJmB8PBd1JI66d6MeP85+38Mux2FFw+nvDOfBwlGaN/uw2AQTOZ9r4JYtA== +"@algolia/client-analytics@5.52.1": + version "5.52.1" + resolved "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.52.1.tgz" + integrity sha512-5oo4+I8iixie9vXhCyNFCzeIr8pqA3FQ//VsLHTDvZAV4ttYOPGvYHGQq5NSalrLx5Jc3dRro/5uDOlnUMcBJg== dependencies: - "@algolia/client-common" "5.20.1" - "@algolia/requester-browser-xhr" "5.20.1" - "@algolia/requester-fetch" "5.20.1" - "@algolia/requester-node-http" "5.20.1" + "@algolia/client-common" "5.52.1" + "@algolia/requester-browser-xhr" "5.52.1" + "@algolia/requester-fetch" "5.52.1" + "@algolia/requester-node-http" "5.52.1" "@algolia/client-common@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.27.0.tgz#6fd6f61d97d5208da3c38aebe8c54fb052902d95" + resolved "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.27.0.tgz" integrity sha512-ZrT6l/YPQgyIUuBCxcYPeXol2VBLUMuNb1rKXrm6z1f/iTiwqtnEEb16/6CC11+Re0ZGXrdcMVrgDRrzveQ1aQ== dependencies: "@algolia/requester-common" "4.27.0" "@algolia/transporter" "4.27.0" -"@algolia/client-common@5.20.1": - version "5.20.1" - resolved "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.20.1.tgz" - integrity sha512-Dk4RhklaAbqLzOeJO/MoIFUjcKYGECiAJYYqDzmE/sbXICk5Uo6dGlv8w4z09lmvsASpNUoMvGYHGBK+WkEGpA== +"@algolia/client-common@5.52.1": + version "5.52.1" + resolved "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.52.1.tgz" + integrity sha512-qCDoZfx5MpX7XQzvQ3bC4tSEMkQWQMaF/ABtLuoze03Y/flR563CCSws02qIJ23oX7lxl92LsilZjINVyTdtLw== -"@algolia/client-insights@5.20.1": - version "5.20.1" - resolved "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.20.1.tgz" - integrity sha512-eu5vhmyYgzZjFIPmkoLo/TU4s+IdsjQ+bEfLj2jcMvyfBD4DcqySKp03TrXjdrHPGO2I3fF7dPZOoCgEi1j2/g== +"@algolia/client-insights@5.52.1": + version "5.52.1" + resolved "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.52.1.tgz" + integrity sha512-hnGs0/lsFJ2PWDxNBz7pxreXo/Xz7gxYRcfePBUjsH26ad0kU/sgnVZd9LwWBpsQv65z2jlb5dkyaB9WE9M9FQ== dependencies: - "@algolia/client-common" "5.20.1" - "@algolia/requester-browser-xhr" "5.20.1" - "@algolia/requester-fetch" "5.20.1" - "@algolia/requester-node-http" "5.20.1" + "@algolia/client-common" "5.52.1" + "@algolia/requester-browser-xhr" "5.52.1" + "@algolia/requester-fetch" "5.52.1" + "@algolia/requester-node-http" "5.52.1" "@algolia/client-personalization@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-4.27.0.tgz#dd9597c8baff815c7667706abb333ba8d53b5d09" + resolved "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.27.0.tgz" integrity sha512-OZqaFFVm+10hAlmxpiTWi/o2n+YKBESbSqSy2yXAumPH/kaK4moJHFblbh8IkV3KZR0lLm4hzPtn8Q2nWNiDUA== dependencies: "@algolia/client-common" "4.27.0" "@algolia/requester-common" "4.27.0" "@algolia/transporter" "4.27.0" -"@algolia/client-personalization@5.20.1": - version "5.20.1" - resolved "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.20.1.tgz" - integrity sha512-TrUCJ0nVqE0PnOGoRG/RCirxWZ6pF+skZgaaESN2IBnJtk/In14xVmoj8Yzck81bGUY/UI+5dUUOOS7YTSVEhQ== +"@algolia/client-personalization@5.52.1": + version "5.52.1" + resolved "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.52.1.tgz" + integrity sha512-2VxxNc/uBysyKvGeBdSM5n9eIDKH8kWD7wd9/yqbJAiVwU4Yv6tU1LSJusHKrXV/aCu1KW7t9Gug9QyeEmtn/Q== dependencies: - "@algolia/client-common" "5.20.1" - "@algolia/requester-browser-xhr" "5.20.1" - "@algolia/requester-fetch" "5.20.1" - "@algolia/requester-node-http" "5.20.1" + "@algolia/client-common" "5.52.1" + "@algolia/requester-browser-xhr" "5.52.1" + "@algolia/requester-fetch" "5.52.1" + "@algolia/requester-node-http" "5.52.1" -"@algolia/client-query-suggestions@5.20.1": - version "5.20.1" - resolved "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.20.1.tgz" - integrity sha512-rHHX/30R3Kkx2aZeR7/8+jU0s6h1cNPMAKOvcMUGVmoiuh46F1sxzmiswHLg6CuLrQ0ikhpdhn3ehFSJwHgp2Q== +"@algolia/client-query-suggestions@5.52.1": + version "5.52.1" + resolved "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.52.1.tgz" + integrity sha512-O6mPtsw3xEfNOe6gWFpYLeAZAIljNa4Hgna3bq15PwyN7nbjTY0wXJFRbzs/0YVf75Br+SbOQUmjKxXYjDiSiQ== dependencies: - "@algolia/client-common" "5.20.1" - "@algolia/requester-browser-xhr" "5.20.1" - "@algolia/requester-fetch" "5.20.1" - "@algolia/requester-node-http" "5.20.1" + "@algolia/client-common" "5.52.1" + "@algolia/requester-browser-xhr" "5.52.1" + "@algolia/requester-fetch" "5.52.1" + "@algolia/requester-node-http" "5.52.1" "@algolia/client-search@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.27.0.tgz#90a5846144636a0a1facea5813fde2b206067739" + resolved "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.27.0.tgz" integrity sha512-qmX/f67ay0eZ4V5Io8fWWOcUVo/gqre2yei1PnmEhQU2Gul6ushg25QnNrfu4BODiRrw1rwYveZaLCiHvcUxrQ== dependencies: "@algolia/client-common" "4.27.0" "@algolia/requester-common" "4.27.0" "@algolia/transporter" "4.27.0" -"@algolia/client-search@5.20.1": - version "5.20.1" - resolved "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.20.1.tgz" - integrity sha512-YzHD0Nqp7AjvzbFrMIjhCUl6apHkWfZxKDSlMqf80mXkuG52wY289zFlvTfHjHK1nEiDslH3uHYAR/poOOa21Q== +"@algolia/client-search@5.52.1": + version "5.52.1" + resolved "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.52.1.tgz" + integrity sha512-gA8oJOV1LnQQkDf91iebNnFInHuW0gRPEgLSOQ7EfipCEjYTHm5swm1DlH9H5RaRw4RrHuzHBegnlzc0MAstcg== dependencies: - "@algolia/client-common" "5.20.1" - "@algolia/requester-browser-xhr" "5.20.1" - "@algolia/requester-fetch" "5.20.1" - "@algolia/requester-node-http" "5.20.1" + "@algolia/client-common" "5.52.1" + "@algolia/requester-browser-xhr" "5.52.1" + "@algolia/requester-fetch" "5.52.1" + "@algolia/requester-node-http" "5.52.1" "@algolia/events@^4.0.1": version "4.0.1" resolved "https://registry.npmjs.org/@algolia/events/-/events-4.0.1.tgz" integrity sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ== -"@algolia/ingestion@1.20.1": - version "1.20.1" - resolved "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.20.1.tgz" - integrity sha512-sHNZ8b5tK7TvXMiiKK+89UsXnFthnAZc0vpwvDKygdTqvsfmfJPhthx36eHTAVYfh7NnA1+eqZsT/hMUGeZFkQ== +"@algolia/ingestion@1.52.1": + version "1.52.1" + resolved "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.52.1.tgz" + integrity sha512-U9zZfc5xIu9wRxZkt+HceJUAD4VKHKbAyLSloJdEyMRmphXeibfrY9cxqIXBcmPeZzGhn3Imb35Dq8l19PkJhw== dependencies: - "@algolia/client-common" "5.20.1" - "@algolia/requester-browser-xhr" "5.20.1" - "@algolia/requester-fetch" "5.20.1" - "@algolia/requester-node-http" "5.20.1" + "@algolia/client-common" "5.52.1" + "@algolia/requester-browser-xhr" "5.52.1" + "@algolia/requester-fetch" "5.52.1" + "@algolia/requester-node-http" "5.52.1" "@algolia/logger-common@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.27.0.tgz#af11004baea4469f2028594257e5dfec8c6d3f68" + resolved "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.27.0.tgz" integrity sha512-pIrmQRXtDV+zTMVXKtKCosC2rWhn0F0TdUeb9etA6RiAz6jY6bY6f0+JX7YekDK09SnmZMLIyUa7Jci+Ied9bw== "@algolia/logger-console@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.27.0.tgz#a82089b51290bbb4fe11f899cae1487c9acbec72" + resolved "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.27.0.tgz" integrity sha512-UWvta8BxsR/u5z9eI088mOSLQaGtmoCtXeN3DYJurlxAdJwPuKtEb5+433kxA6/E9f2/JgoW89KZ1vNP9pcHBQ== dependencies: "@algolia/logger-common" "4.27.0" -"@algolia/monitoring@1.20.1": - version "1.20.1" - resolved "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.20.1.tgz" - integrity sha512-+fHd1U3gSeszCH03UtyUZmprpmcJH6aJKyUTOfY73lKKRR7hVofmV812ahScR0T4xUkBlGjTLeGnsKY0IG6K6Q== +"@algolia/monitoring@1.52.1": + version "1.52.1" + resolved "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.52.1.tgz" + integrity sha512-a3SGNceHmkQfq77iG8Ka+w1pvwfZa/0lzEIgse30fL0kD+yKnd/dg0dQvSfFPAEt2f21DMcGkDSSeJlO3KdQjQ== dependencies: - "@algolia/client-common" "5.20.1" - "@algolia/requester-browser-xhr" "5.20.1" - "@algolia/requester-fetch" "5.20.1" - "@algolia/requester-node-http" "5.20.1" + "@algolia/client-common" "5.52.1" + "@algolia/requester-browser-xhr" "5.52.1" + "@algolia/requester-fetch" "5.52.1" + "@algolia/requester-node-http" "5.52.1" "@algolia/recommend@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/recommend/-/recommend-4.27.0.tgz#159f230c9a123e5781499cba8b7d05c235bfca5e" + resolved "https://registry.npmjs.org/@algolia/recommend/-/recommend-4.27.0.tgz" integrity sha512-CFy54xDjrsazPi3KN04yPmLRDT72AKokc3RLOdWQvG0/uEUjj7dhWqe9qenxpL4ydsjO7S1eY5YqmX+uMGonlg== dependencies: "@algolia/cache-browser-local-storage" "4.27.0" @@ -212,114 +235,101 @@ "@algolia/requester-node-http" "4.27.0" "@algolia/transporter" "4.27.0" -"@algolia/recommend@5.20.1": - version "5.20.1" - resolved "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.20.1.tgz" - integrity sha512-+IuiUv3OSOFFKoXFMlZHfFzXGqEQbKhncpAcRSAtJmN4pupY4aNblvJ9Wv0SMm7/MSFRy2JLIoYWRSBpSV2yEg== +"@algolia/recommend@5.52.1": + version "5.52.1" + resolved "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.52.1.tgz" + integrity sha512-z98QEguCFDpxb4S/PyrUK1igqF8tPsdbqOUUO6ON91vJ58w+Gwa6ncrI0oNXSFcrkxA5EqPKPQ2A1PBCn08TYQ== dependencies: - "@algolia/client-common" "5.20.1" - "@algolia/requester-browser-xhr" "5.20.1" - "@algolia/requester-fetch" "5.20.1" - "@algolia/requester-node-http" "5.20.1" + "@algolia/client-common" "5.52.1" + "@algolia/requester-browser-xhr" "5.52.1" + "@algolia/requester-fetch" "5.52.1" + "@algolia/requester-node-http" "5.52.1" "@algolia/requester-browser-xhr@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.27.0.tgz#bab981bb46dded2897e4ad327e222e7ec836df28" + resolved "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.27.0.tgz" integrity sha512-dTenMBIIpyp5o3C2ZnfbsuSlD/lL9jPkk6T+2+qm38fyw2nf49ANbcHFE79NgiGrnmw7QrYveCs9NIP3Wk4v6g== dependencies: "@algolia/requester-common" "4.27.0" -"@algolia/requester-browser-xhr@5.20.1": - version "5.20.1" - resolved "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.20.1.tgz" - integrity sha512-+RaJa5MpJqPHaSbBw0nrHeyIAd5C4YC9C1LfDbZJqrn5ZwOvHMUTod852XmzX/1S8oi1jTynB4FjicmauZIKwA== +"@algolia/requester-browser-xhr@5.52.1": + version "5.52.1" + resolved "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.52.1.tgz" + integrity sha512-CI7+/0I11QeZM59Uc8whd2or0kqzFVjpaPn9Qpwll/krHcBAxk24WkAQ6WX+IwDVMfpont4YGbKwAmCre3vE8Q== dependencies: - "@algolia/client-common" "5.20.1" + "@algolia/client-common" "5.52.1" "@algolia/requester-common@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.27.0.tgz#0586c4df662f9dce712a5e99db61932b82328700" + resolved "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.27.0.tgz" integrity sha512-VC3prAQVgWTubMStb3mJz6i61Hqbtagi2LeIbgNtoFJFff3XZDcAaO1D5r0GYl2+DrB2VzUHnQXbkiuI+HHYyg== -"@algolia/requester-fetch@5.20.1": - version "5.20.1" - resolved "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.20.1.tgz" - integrity sha512-4l1cba8t02rNkLeX/B7bmgDg3CwuRunmuCSgN2zORDtepjg9YAU1qcyRTyc/rAuNJ54AduRfoBplmKXjowYzbQ== +"@algolia/requester-fetch@5.52.1": + version "5.52.1" + resolved "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.52.1.tgz" + integrity sha512-S6bDuw9byfOvm3T71cgdoZgrgnZq6hpdMLkx52Louh57nUAmvGQESz2aojOynQHjbTiV55smvAFbgn0qT4tJrg== dependencies: - "@algolia/client-common" "5.20.1" + "@algolia/client-common" "5.52.1" "@algolia/requester-node-http@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.27.0.tgz#ba3637ff150b1161e793f7a2722ec5033ea74f77" + resolved "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.27.0.tgz" integrity sha512-y8nUqaUQeSOQ5oaNo0b2QPznyBFW9LoIwljyUphJ+gUZpU6O/j2/C8ovoqDpIe6J0etqHg5RCcBizrCFZuLpyw== dependencies: "@algolia/requester-common" "4.27.0" -"@algolia/requester-node-http@5.20.1": - version "5.20.1" - resolved "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.20.1.tgz" - integrity sha512-4npKo1qpLG5xusFoFUj4xIIR/6y3YoCuS/uhagv2blGFotDj+D6OLTML3Pp6JCVcES4zDbkoY7pmNBA8ARtidQ== +"@algolia/requester-node-http@5.52.1": + version "5.52.1" + resolved "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.52.1.tgz" + integrity sha512-tqZXM+54rWo4mk5jL5Z/flE11nPmNEdXwFBM5py9DkOmbjeCNemfVd45FyM97XdzfZ0dl9uOJC6PYn1FpkeyQg== dependencies: - "@algolia/client-common" "5.20.1" + "@algolia/client-common" "5.52.1" "@algolia/transporter@4.27.0": version "4.27.0" - resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.27.0.tgz#525935ca0333101a3c6cff1304e4191d061cf629" + resolved "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.27.0.tgz" integrity sha512-PvSbELU4VjN3xSX79ki+zIdOGhTxyJXWvRDzkUjfTx2iNfPWDdTjzKbP1o+268coJztxrkuBwJz90Urek7o1Kw== dependencies: "@algolia/cache-common" "4.27.0" "@algolia/logger-common" "4.27.0" "@algolia/requester-common" "4.27.0" -"@ampproject/remapping@^2.2.0": - version "2.3.0" - resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz" - integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== - dependencies: - "@jridgewell/gen-mapping" "^0.3.5" - "@jridgewell/trace-mapping" "^0.3.24" - -"@antfu/install-pkg@^0.4.0": - version "0.4.1" - resolved "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-0.4.1.tgz" - integrity sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw== +"@antfu/install-pkg@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-1.1.0.tgz" + integrity sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ== dependencies: - package-manager-detector "^0.2.0" - tinyexec "^0.3.0" - -"@antfu/utils@^0.7.10": - version "0.7.10" - resolved "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.10.tgz" - integrity sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww== + package-manager-detector "^1.3.0" + tinyexec "^1.0.1" "@asciidoctor/cli@3.5.0": version "3.5.0" - resolved "https://registry.yarnpkg.com/@asciidoctor/cli/-/cli-3.5.0.tgz#0b0a0204880b325971fb2af33bf490ab67672d8f" + resolved "https://registry.npmjs.org/@asciidoctor/cli/-/cli-3.5.0.tgz" integrity sha512-/VMHXcZBnZ9vgWfmqk9Hu0x0gMjPLup0YGq/xA8qCQuk11kUIZNMVQwgSsIUzOEwJqIUD7CgncJdtfwv1Ndxuw== dependencies: yargs "16.2.0" "@asciidoctor/core@2.2.9": version "2.2.9" - resolved "https://registry.yarnpkg.com/@asciidoctor/core/-/core-2.2.9.tgz#a591426f96b5fa059b2eb68a129ac1a203ac48a5" + resolved "https://registry.npmjs.org/@asciidoctor/core/-/core-2.2.9.tgz" integrity sha512-tIPRHo1T2SFmAm+j77cDsj0RuaszP7xJxsaVTTAF5CwKyTbazw9TnIVlpIWM5yWfIWAWcAZy92RcnPgMJwny1w== dependencies: asciidoctor-opal-runtime "0.3.4" unxhr "~1.2" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0", "@babel/code-frame@^7.8.3": - version "7.26.2" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz" - integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.28.6", "@babel/code-frame@^7.29.0", "@babel/code-frame@^7.8.3": + version "7.29.0" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz" + integrity sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw== dependencies: - "@babel/helper-validator-identifier" "^7.25.9" + "@babel/helper-validator-identifier" "^7.28.5" js-tokens "^4.0.0" - picocolors "^1.0.0" + picocolors "^1.1.1" -"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.9", "@babel/compat-data@^7.26.0": - version "7.26.2" - resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz" - integrity sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg== +"@babel/compat-data@^7.28.6", "@babel/compat-data@^7.29.3": + version "7.29.3" + resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.3.tgz" + integrity sha512-LIVqM46zQWZhj17qA8wb4nW/ixr2y1Nw+r1etiAWgRM6U1IqP+LNhL1yg440jYZR72jCWcWbLWzIosH+uP1fqg== "@babel/core@7.12.9": version "7.12.9" @@ -344,249 +354,246 @@ source-map "^0.5.0" "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.18.2", "@babel/core@^7.19.6", "@babel/core@^7.21.3", "@babel/core@^7.25.9", "@babel/core@^7.7.2", "@babel/core@^7.8.0": - version "7.26.0" - resolved "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz" - integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== - dependencies: - "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.26.0" - "@babel/generator" "^7.26.0" - "@babel/helper-compilation-targets" "^7.25.9" - "@babel/helper-module-transforms" "^7.26.0" - "@babel/helpers" "^7.26.0" - "@babel/parser" "^7.26.0" - "@babel/template" "^7.25.9" - "@babel/traverse" "^7.25.9" - "@babel/types" "^7.26.0" + version "7.29.0" + resolved "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz" + integrity sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA== + dependencies: + "@babel/code-frame" "^7.29.0" + "@babel/generator" "^7.29.0" + "@babel/helper-compilation-targets" "^7.28.6" + "@babel/helper-module-transforms" "^7.28.6" + "@babel/helpers" "^7.28.6" + "@babel/parser" "^7.29.0" + "@babel/template" "^7.28.6" + "@babel/traverse" "^7.29.0" + "@babel/types" "^7.29.0" + "@jridgewell/remapping" "^2.3.5" convert-source-map "^2.0.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.3" semver "^6.3.1" -"@babel/generator@^7.12.5", "@babel/generator@^7.18.2", "@babel/generator@^7.25.9", "@babel/generator@^7.26.0", "@babel/generator@^7.7.2": - version "7.26.2" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz" - integrity sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw== +"@babel/generator@^7.12.5", "@babel/generator@^7.18.2", "@babel/generator@^7.25.9", "@babel/generator@^7.29.0", "@babel/generator@^7.7.2": + version "7.29.1" + resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz" + integrity sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw== dependencies: - "@babel/parser" "^7.26.2" - "@babel/types" "^7.26.0" - "@jridgewell/gen-mapping" "^0.3.5" - "@jridgewell/trace-mapping" "^0.3.25" + "@babel/parser" "^7.29.0" + "@babel/types" "^7.29.0" + "@jridgewell/gen-mapping" "^0.3.12" + "@jridgewell/trace-mapping" "^0.3.28" jsesc "^3.0.2" -"@babel/helper-annotate-as-pure@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz" - integrity sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g== - dependencies: - "@babel/types" "^7.25.9" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.25.9.tgz" - integrity sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g== +"@babel/helper-annotate-as-pure@^7.27.1", "@babel/helper-annotate-as-pure@^7.27.3": + version "7.27.3" + resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz" + integrity sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg== dependencies: - "@babel/traverse" "^7.25.9" - "@babel/types" "^7.25.9" + "@babel/types" "^7.27.3" -"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz" - integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ== +"@babel/helper-compilation-targets@^7.27.1", "@babel/helper-compilation-targets@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz" + integrity sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA== dependencies: - "@babel/compat-data" "^7.25.9" - "@babel/helper-validator-option" "^7.25.9" + "@babel/compat-data" "^7.28.6" + "@babel/helper-validator-option" "^7.27.1" browserslist "^4.24.0" lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz" - integrity sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.25.9" - "@babel/helper-member-expression-to-functions" "^7.25.9" - "@babel/helper-optimise-call-expression" "^7.25.9" - "@babel/helper-replace-supers" "^7.25.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" - "@babel/traverse" "^7.25.9" +"@babel/helper-create-class-features-plugin@^7.28.6": + version "7.29.3" + resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.29.3.tgz" + integrity sha512-RpLYy2sb51oNLjuu1iD3bwBqCBWUzjO0ocp+iaCP/lJtb2CPLcnC2Fftw+4sAzaMELGeWTgExSKADbdo0GFVzA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.27.3" + "@babel/helper-member-expression-to-functions" "^7.28.5" + "@babel/helper-optimise-call-expression" "^7.27.1" + "@babel/helper-replace-supers" "^7.28.6" + "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" + "@babel/traverse" "^7.29.0" semver "^6.3.1" -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.9.tgz" - integrity sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw== +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.27.1", "@babel/helper-create-regexp-features-plugin@^7.28.5": + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz" + integrity sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.9" - regexpu-core "^6.1.1" + "@babel/helper-annotate-as-pure" "^7.27.3" + regexpu-core "^6.3.1" semver "^6.3.1" -"@babel/helper-define-polyfill-provider@^0.6.2": - version "0.6.2" - resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz" - integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ== +"@babel/helper-define-polyfill-provider@^0.6.5", "@babel/helper-define-polyfill-provider@^0.6.8": + version "0.6.8" + resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.8.tgz" + integrity sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA== dependencies: - "@babel/helper-compilation-targets" "^7.22.6" - "@babel/helper-plugin-utils" "^7.22.5" - debug "^4.1.1" + "@babel/helper-compilation-targets" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" + debug "^4.4.3" lodash.debounce "^4.0.8" - resolve "^1.14.2" + resolve "^1.22.11" + +"@babel/helper-globals@^7.28.0": + version "7.28.0" + resolved "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz" + integrity sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw== -"@babel/helper-member-expression-to-functions@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz" - integrity sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ== +"@babel/helper-member-expression-to-functions@^7.28.5": + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz" + integrity sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg== dependencies: - "@babel/traverse" "^7.25.9" - "@babel/types" "^7.25.9" + "@babel/traverse" "^7.28.5" + "@babel/types" "^7.28.5" -"@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz" - integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== +"@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz" + integrity sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw== dependencies: - "@babel/traverse" "^7.25.9" - "@babel/types" "^7.25.9" + "@babel/traverse" "^7.28.6" + "@babel/types" "^7.28.6" -"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.25.9", "@babel/helper-module-transforms@^7.26.0": - version "7.26.0" - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz" - integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== +"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.27.1", "@babel/helper-module-transforms@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz" + integrity sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA== dependencies: - "@babel/helper-module-imports" "^7.25.9" - "@babel/helper-validator-identifier" "^7.25.9" - "@babel/traverse" "^7.25.9" + "@babel/helper-module-imports" "^7.28.6" + "@babel/helper-validator-identifier" "^7.28.5" + "@babel/traverse" "^7.28.6" -"@babel/helper-optimise-call-expression@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz" - integrity sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ== +"@babel/helper-optimise-call-expression@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz" + integrity sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw== dependencies: - "@babel/types" "^7.25.9" + "@babel/types" "^7.27.1" "@babel/helper-plugin-utils@7.10.4": version "7.10.4" resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz" integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.8.0": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz" - integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw== +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.27.1", "@babel/helper-plugin-utils@^7.28.6", "@babel/helper-plugin-utils@^7.8.0": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz" + integrity sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug== -"@babel/helper-remap-async-to-generator@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz" - integrity sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw== +"@babel/helper-remap-async-to-generator@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz" + integrity sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.9" - "@babel/helper-wrap-function" "^7.25.9" - "@babel/traverse" "^7.25.9" + "@babel/helper-annotate-as-pure" "^7.27.1" + "@babel/helper-wrap-function" "^7.27.1" + "@babel/traverse" "^7.27.1" -"@babel/helper-replace-supers@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz" - integrity sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ== +"@babel/helper-replace-supers@^7.27.1", "@babel/helper-replace-supers@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz" + integrity sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg== dependencies: - "@babel/helper-member-expression-to-functions" "^7.25.9" - "@babel/helper-optimise-call-expression" "^7.25.9" - "@babel/traverse" "^7.25.9" + "@babel/helper-member-expression-to-functions" "^7.28.5" + "@babel/helper-optimise-call-expression" "^7.27.1" + "@babel/traverse" "^7.28.6" -"@babel/helper-simple-access@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.25.9.tgz" - integrity sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q== +"@babel/helper-skip-transparent-expression-wrappers@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz" + integrity sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg== dependencies: - "@babel/traverse" "^7.25.9" - "@babel/types" "^7.25.9" + "@babel/traverse" "^7.27.1" + "@babel/types" "^7.27.1" -"@babel/helper-skip-transparent-expression-wrappers@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz" - integrity sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA== - dependencies: - "@babel/traverse" "^7.25.9" - "@babel/types" "^7.25.9" +"@babel/helper-string-parser@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz" + integrity sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA== -"@babel/helper-string-parser@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz" - integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== +"@babel/helper-validator-identifier@^7.28.5": + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz" + integrity sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q== -"@babel/helper-validator-identifier@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz" - integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== +"@babel/helper-validator-option@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz" + integrity sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg== -"@babel/helper-validator-option@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz" - integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== +"@babel/helper-wrap-function@^7.27.1": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.28.6.tgz" + integrity sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ== + dependencies: + "@babel/template" "^7.28.6" + "@babel/traverse" "^7.28.6" + "@babel/types" "^7.28.6" -"@babel/helper-wrap-function@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz" - integrity sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g== +"@babel/helpers@^7.12.5", "@babel/helpers@^7.28.6": + version "7.29.2" + resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz" + integrity sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw== dependencies: - "@babel/template" "^7.25.9" - "@babel/traverse" "^7.25.9" - "@babel/types" "^7.25.9" + "@babel/template" "^7.28.6" + "@babel/types" "^7.29.0" -"@babel/helpers@^7.12.5", "@babel/helpers@^7.26.0": - version "7.26.0" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz" - integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw== +"@babel/parser@^7.1.0", "@babel/parser@^7.12.7", "@babel/parser@^7.14.7", "@babel/parser@^7.18.3", "@babel/parser@^7.20.7", "@babel/parser@^7.28.6", "@babel/parser@^7.29.0": + version "7.29.3" + resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz" + integrity sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA== dependencies: - "@babel/template" "^7.25.9" - "@babel/types" "^7.26.0" + "@babel/types" "^7.29.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.12.7", "@babel/parser@^7.14.7", "@babel/parser@^7.18.3", "@babel/parser@^7.20.7", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2": - version "7.26.2" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz" - integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ== +"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.28.5": + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz" + integrity sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q== dependencies: - "@babel/types" "^7.26.0" + "@babel/helper-plugin-utils" "^7.27.1" + "@babel/traverse" "^7.28.5" -"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz" - integrity sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g== +"@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz" + integrity sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/traverse" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz" - integrity sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz" + integrity sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz" - integrity sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug== +"@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@^7.29.3": + version "7.29.3" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-rest-destructuring-rhs-array/-/plugin-bugfix-safari-rest-destructuring-rhs-array-7.29.3.tgz" + integrity sha512-SRS46DFR4HqzUzCVgi90/xMoL+zeBDBvWdKYXSEzh79kXswNFEglUpMKxR04//dPqwYXWUBJ3mpUd933ru9Kmg== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz" - integrity sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz" + integrity sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" - "@babel/plugin-transform-optional-chaining" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" + "@babel/plugin-transform-optional-chaining" "^7.27.1" -"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz" - integrity sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg== +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.6.tgz" + integrity sha512-a0aBScVTlNaiUe35UtfxAN7A/tehvvG4/ByO6+46VPKTRSlfnAFsgKy0FUh+qAkQrDTmhDkT+IBOKlOoMUxQ0g== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/traverse" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/traverse" "^7.28.6" "@babel/plugin-proposal-object-rest-spread@7.12.1": version "7.12.1" @@ -637,19 +644,19 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-import-assertions@^7.26.0": - version "7.26.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz" - integrity sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg== +"@babel/plugin-syntax-import-assertions@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.28.6.tgz" + integrity sha512-pSJUpFHdx9z5nqTSirOCMtYVP2wFgoWhP0p3g8ONK/4IHhLIBd0B9NYqAvIUAhq+OkhO4VM1tENCt0cjlsNShw== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-syntax-import-attributes@^7.24.7", "@babel/plugin-syntax-import-attributes@^7.26.0": - version "7.26.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz" - integrity sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A== +"@babel/plugin-syntax-import-attributes@^7.24.7", "@babel/plugin-syntax-import-attributes@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz" + integrity sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" "@babel/plugin-syntax-import-meta@^7.10.4": version "7.10.4" @@ -672,12 +679,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-jsx@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz" - integrity sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA== +"@babel/plugin-syntax-jsx@^7.27.1", "@babel/plugin-syntax-jsx@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz" + integrity sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": version "7.10.4" @@ -735,12 +742,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.25.9", "@babel/plugin-syntax-typescript@^7.7.2": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz" - integrity sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ== +"@babel/plugin-syntax-typescript@^7.28.6", "@babel/plugin-syntax-typescript@^7.7.2": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.28.6.tgz" + integrity sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" "@babel/plugin-syntax-unicode-sets-regex@^7.18.6": version "7.18.6" @@ -750,531 +757,541 @@ "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-arrow-functions@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz" - integrity sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg== +"@babel/plugin-transform-arrow-functions@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz" + integrity sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-async-generator-functions@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz" - integrity sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw== +"@babel/plugin-transform-async-generator-functions@^7.29.0": + version "7.29.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.29.0.tgz" + integrity sha512-va0VdWro4zlBr2JsXC+ofCPB2iG12wPtVGTWFx2WLDOM3nYQZZIGP82qku2eW/JR83sD+k2k+CsNtyEbUqhU6w== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-remap-async-to-generator" "^7.25.9" - "@babel/traverse" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/helper-remap-async-to-generator" "^7.27.1" + "@babel/traverse" "^7.29.0" -"@babel/plugin-transform-async-to-generator@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz" - integrity sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ== +"@babel/plugin-transform-async-to-generator@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.28.6.tgz" + integrity sha512-ilTRcmbuXjsMmcZ3HASTe4caH5Tpo93PkTxF9oG2VZsSWsahydmcEHhix9Ik122RcTnZnUzPbmux4wh1swfv7g== dependencies: - "@babel/helper-module-imports" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-remap-async-to-generator" "^7.25.9" + "@babel/helper-module-imports" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/helper-remap-async-to-generator" "^7.27.1" -"@babel/plugin-transform-block-scoped-functions@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz" - integrity sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA== +"@babel/plugin-transform-block-scoped-functions@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz" + integrity sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-block-scoping@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz" - integrity sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg== +"@babel/plugin-transform-block-scoping@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.6.tgz" + integrity sha512-tt/7wOtBmwHPNMPu7ax4pdPz6shjFrmHDghvNC+FG9Qvj7D6mJcoRQIF5dy4njmxR941l6rgtvfSB2zX3VlUIw== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-class-properties@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz" - integrity sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q== +"@babel/plugin-transform-class-properties@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.28.6.tgz" + integrity sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw== dependencies: - "@babel/helper-create-class-features-plugin" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-create-class-features-plugin" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-class-static-block@^7.26.0": - version "7.26.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz" - integrity sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ== +"@babel/plugin-transform-class-static-block@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.6.tgz" + integrity sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ== dependencies: - "@babel/helper-create-class-features-plugin" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-create-class-features-plugin" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-classes@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz" - integrity sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg== +"@babel/plugin-transform-classes@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.6.tgz" + integrity sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.9" - "@babel/helper-compilation-targets" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-replace-supers" "^7.25.9" - "@babel/traverse" "^7.25.9" - globals "^11.1.0" + "@babel/helper-annotate-as-pure" "^7.27.3" + "@babel/helper-compilation-targets" "^7.28.6" + "@babel/helper-globals" "^7.28.0" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/helper-replace-supers" "^7.28.6" + "@babel/traverse" "^7.28.6" -"@babel/plugin-transform-computed-properties@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz" - integrity sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA== +"@babel/plugin-transform-computed-properties@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.28.6.tgz" + integrity sha512-bcc3k0ijhHbc2lEfpFHgx7eYw9KNXqOerKWfzbxEHUGKnS3sz9C4CNL9OiFN1297bDNfUiSO7DaLzbvHQQQ1BQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/template" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/template" "^7.28.6" -"@babel/plugin-transform-destructuring@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz" - integrity sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ== +"@babel/plugin-transform-destructuring@^7.28.5": + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz" + integrity sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" + "@babel/traverse" "^7.28.5" -"@babel/plugin-transform-dotall-regex@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz" - integrity sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA== +"@babel/plugin-transform-dotall-regex@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.28.6.tgz" + integrity sha512-SljjowuNKB7q5Oayv4FoPzeB74g3QgLt8IVJw9ADvWy3QnUb/01aw8I4AVv8wYnPvQz2GDDZ/g3GhcNyDBI4Bg== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-create-regexp-features-plugin" "^7.28.5" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-duplicate-keys@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz" - integrity sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw== +"@babel/plugin-transform-duplicate-keys@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz" + integrity sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz" - integrity sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog== +"@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.29.0": + version "7.29.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.29.0.tgz" + integrity sha512-zBPcW2lFGxdiD8PUnPwJjag2J9otbcLQzvbiOzDxpYXyCuYX9agOwMPGn1prVH0a4qzhCKu24rlH4c1f7yA8rw== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-create-regexp-features-plugin" "^7.28.5" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-dynamic-import@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz" - integrity sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg== +"@babel/plugin-transform-dynamic-import@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz" + integrity sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-exponentiation-operator@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.25.9.tgz" - integrity sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA== +"@babel/plugin-transform-explicit-resource-management@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.6.tgz" + integrity sha512-Iao5Konzx2b6g7EPqTy40UZbcdXE126tTxVFr/nAIj+WItNxjKSYTEw3RC+A2/ZetmdJsgueL1KhaMCQHkLPIg== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/plugin-transform-destructuring" "^7.28.5" -"@babel/plugin-transform-export-namespace-from@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz" - integrity sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww== +"@babel/plugin-transform-exponentiation-operator@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.6.tgz" + integrity sha512-WitabqiGjV/vJ0aPOLSFfNY1u9U3R7W36B03r5I2KoNix+a3sOhJ3pKFB3R5It9/UiK78NiO0KE9P21cMhlPkw== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-for-of@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz" - integrity sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A== +"@babel/plugin-transform-export-namespace-from@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz" + integrity sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-function-name@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz" - integrity sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA== +"@babel/plugin-transform-for-of@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz" + integrity sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw== dependencies: - "@babel/helper-compilation-targets" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/traverse" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" -"@babel/plugin-transform-json-strings@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz" - integrity sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw== +"@babel/plugin-transform-function-name@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz" + integrity sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-compilation-targets" "^7.27.1" + "@babel/helper-plugin-utils" "^7.27.1" + "@babel/traverse" "^7.27.1" -"@babel/plugin-transform-literals@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz" - integrity sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ== +"@babel/plugin-transform-json-strings@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.28.6.tgz" + integrity sha512-Nr+hEN+0geQkzhbdgQVPoqr47lZbm+5fCUmO70722xJZd0Mvb59+33QLImGj6F+DkK3xgDi1YVysP8whD6FQAw== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-logical-assignment-operators@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz" - integrity sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q== +"@babel/plugin-transform-literals@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz" + integrity sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-member-expression-literals@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz" - integrity sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA== +"@babel/plugin-transform-logical-assignment-operators@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.6.tgz" + integrity sha512-+anKKair6gpi8VsM/95kmomGNMD0eLz1NQ8+Pfw5sAwWH9fGYXT50E55ZpV0pHUHWf6IUTWPM+f/7AAff+wr9A== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-modules-amd@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz" - integrity sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw== +"@babel/plugin-transform-member-expression-literals@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz" + integrity sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ== dependencies: - "@babel/helper-module-transforms" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-modules-commonjs@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.9.tgz" - integrity sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg== +"@babel/plugin-transform-modules-amd@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz" + integrity sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA== dependencies: - "@babel/helper-module-transforms" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-simple-access" "^7.25.9" + "@babel/helper-module-transforms" "^7.27.1" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-modules-systemjs@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz" - integrity sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA== +"@babel/plugin-transform-modules-commonjs@^7.27.1", "@babel/plugin-transform-modules-commonjs@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.28.6.tgz" + integrity sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA== dependencies: - "@babel/helper-module-transforms" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-validator-identifier" "^7.25.9" - "@babel/traverse" "^7.25.9" + "@babel/helper-module-transforms" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-modules-umd@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz" - integrity sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw== +"@babel/plugin-transform-modules-systemjs@^7.29.4": + version "7.29.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.29.4.tgz" + integrity sha512-N7QmZ0xRZfjHOfZeQLJjwgX2zS9pdGHSVl/cjSGlo4dXMqvurfxXDMKY4RqEKzPozV78VMcd0lxyG13mlbKc4w== dependencies: - "@babel/helper-module-transforms" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-module-transforms" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/helper-validator-identifier" "^7.28.5" + "@babel/traverse" "^7.29.0" -"@babel/plugin-transform-named-capturing-groups-regex@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz" - integrity sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA== +"@babel/plugin-transform-modules-umd@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz" + integrity sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-module-transforms" "^7.27.1" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-new-target@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz" - integrity sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ== +"@babel/plugin-transform-named-capturing-groups-regex@^7.29.0": + version "7.29.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.29.0.tgz" + integrity sha512-1CZQA5KNAD6ZYQLPw7oi5ewtDNxH/2vuCh+6SmvgDfhumForvs8a1o9n0UrEoBD8HU4djO2yWngTQlXl1NDVEQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-create-regexp-features-plugin" "^7.28.5" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-nullish-coalescing-operator@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz" - integrity sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog== +"@babel/plugin-transform-new-target@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz" + integrity sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-numeric-separator@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz" - integrity sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q== +"@babel/plugin-transform-nullish-coalescing-operator@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.28.6.tgz" + integrity sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-object-rest-spread@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz" - integrity sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg== +"@babel/plugin-transform-numeric-separator@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.28.6.tgz" + integrity sha512-SJR8hPynj8outz+SlStQSwvziMN4+Bq99it4tMIf5/Caq+3iOc0JtKyse8puvyXkk3eFRIA5ID/XfunGgO5i6w== dependencies: - "@babel/helper-compilation-targets" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/plugin-transform-parameters" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-object-super@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz" - integrity sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A== +"@babel/plugin-transform-object-rest-spread@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.6.tgz" + integrity sha512-5rh+JR4JBC4pGkXLAcYdLHZjXudVxWMXbB6u6+E9lRL5TrGVbHt1TjxGbZ8CkmYw9zjkB7jutzOROArsqtncEA== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-replace-supers" "^7.25.9" + "@babel/helper-compilation-targets" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/plugin-transform-destructuring" "^7.28.5" + "@babel/plugin-transform-parameters" "^7.27.7" + "@babel/traverse" "^7.28.6" -"@babel/plugin-transform-optional-catch-binding@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz" - integrity sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g== +"@babel/plugin-transform-object-super@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz" + integrity sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-replace-supers" "^7.27.1" -"@babel/plugin-transform-optional-chaining@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz" - integrity sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A== +"@babel/plugin-transform-optional-catch-binding@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.28.6.tgz" + integrity sha512-R8ja/Pyrv0OGAvAXQhSTmWyPJPml+0TMqXlO5w+AsMEiwb2fg3WkOvob7UxFSL3OIttFSGSRFKQsOhJ/X6HQdQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz" - integrity sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g== +"@babel/plugin-transform-optional-chaining@^7.27.1", "@babel/plugin-transform-optional-chaining@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.6.tgz" + integrity sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" -"@babel/plugin-transform-private-methods@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz" - integrity sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw== +"@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.27.7": + version "7.27.7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz" + integrity sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg== dependencies: - "@babel/helper-create-class-features-plugin" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-private-property-in-object@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz" - integrity sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw== +"@babel/plugin-transform-private-methods@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.28.6.tgz" + integrity sha512-piiuapX9CRv7+0st8lmuUlRSmX6mBcVeNQ1b4AYzJxfCMuBfB0vBXDiGSmm03pKJw1v6cZ8KSeM+oUnM6yAExg== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.9" - "@babel/helper-create-class-features-plugin" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-create-class-features-plugin" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-property-literals@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz" - integrity sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA== +"@babel/plugin-transform-private-property-in-object@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.28.6.tgz" + integrity sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-annotate-as-pure" "^7.27.3" + "@babel/helper-create-class-features-plugin" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" + +"@babel/plugin-transform-property-literals@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz" + integrity sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ== + dependencies: + "@babel/helper-plugin-utils" "^7.27.1" "@babel/plugin-transform-react-constant-elements@^7.12.1", "@babel/plugin-transform-react-constant-elements@^7.18.12", "@babel/plugin-transform-react-constant-elements@^7.21.3": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.25.9.tgz" - integrity sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow== + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.27.1.tgz" + integrity sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-react-display-name@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz" - integrity sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ== +"@babel/plugin-transform-react-display-name@^7.28.0": + version "7.28.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.28.0.tgz" + integrity sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-react-jsx-development@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz" - integrity sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw== +"@babel/plugin-transform-react-jsx-development@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.27.1.tgz" + integrity sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q== dependencies: - "@babel/plugin-transform-react-jsx" "^7.25.9" + "@babel/plugin-transform-react-jsx" "^7.27.1" -"@babel/plugin-transform-react-jsx@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz" - integrity sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw== +"@babel/plugin-transform-react-jsx@^7.27.1": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.28.6.tgz" + integrity sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.9" - "@babel/helper-module-imports" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/plugin-syntax-jsx" "^7.25.9" - "@babel/types" "^7.25.9" + "@babel/helper-annotate-as-pure" "^7.27.3" + "@babel/helper-module-imports" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/plugin-syntax-jsx" "^7.28.6" + "@babel/types" "^7.28.6" -"@babel/plugin-transform-react-pure-annotations@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz" - integrity sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg== +"@babel/plugin-transform-react-pure-annotations@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.27.1.tgz" + integrity sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-annotate-as-pure" "^7.27.1" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-regenerator@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz" - integrity sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg== +"@babel/plugin-transform-regenerator@^7.29.0": + version "7.29.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.29.0.tgz" + integrity sha512-FijqlqMA7DmRdg/aINBSs04y8XNTYw/lr1gJ2WsmBnnaNw1iS43EPkJW+zK7z65auG3AWRFXWj+NcTQwYptUog== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - regenerator-transform "^0.15.2" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-regexp-modifiers@^7.26.0": - version "7.26.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz" - integrity sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw== +"@babel/plugin-transform-regexp-modifiers@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.28.6.tgz" + integrity sha512-QGWAepm9qxpaIs7UM9FvUSnCGlb8Ua1RhyM4/veAxLwt3gMat/LSGrZixyuj4I6+Kn9iwvqCyPTtbdxanYoWYg== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-create-regexp-features-plugin" "^7.28.5" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-reserved-words@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz" - integrity sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg== +"@babel/plugin-transform-reserved-words@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz" + integrity sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" "@babel/plugin-transform-runtime@^7.18.2", "@babel/plugin-transform-runtime@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.9.tgz" - integrity sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ== - dependencies: - "@babel/helper-module-imports" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" - babel-plugin-polyfill-corejs2 "^0.4.10" - babel-plugin-polyfill-corejs3 "^0.10.6" - babel-plugin-polyfill-regenerator "^0.6.1" + version "7.29.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.29.0.tgz" + integrity sha512-jlaRT5dJtMaMCV6fAuLbsQMSwz/QkvaHOHOSXRitGGwSpR1blCY4KUKoyP2tYO8vJcqYe8cEj96cqSztv3uF9w== + dependencies: + "@babel/helper-module-imports" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" + babel-plugin-polyfill-corejs2 "^0.4.14" + babel-plugin-polyfill-corejs3 "^0.13.0" + babel-plugin-polyfill-regenerator "^0.6.5" semver "^6.3.1" -"@babel/plugin-transform-shorthand-properties@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz" - integrity sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng== +"@babel/plugin-transform-shorthand-properties@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz" + integrity sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-spread@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz" - integrity sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A== +"@babel/plugin-transform-spread@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.28.6.tgz" + integrity sha512-9U4QObUC0FtJl05AsUcodau/RWDytrU6uKgkxu09mLR9HLDAtUMoPuuskm5huQsoktmsYpI+bGmq+iapDcriKA== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" -"@babel/plugin-transform-sticky-regex@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz" - integrity sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA== +"@babel/plugin-transform-sticky-regex@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz" + integrity sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-template-literals@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz" - integrity sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw== +"@babel/plugin-transform-template-literals@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz" + integrity sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-typeof-symbol@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz" - integrity sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA== +"@babel/plugin-transform-typeof-symbol@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz" + integrity sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-typescript@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.9.tgz" - integrity sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ== +"@babel/plugin-transform-typescript@^7.28.5": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.6.tgz" + integrity sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.9" - "@babel/helper-create-class-features-plugin" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" - "@babel/plugin-syntax-typescript" "^7.25.9" + "@babel/helper-annotate-as-pure" "^7.27.3" + "@babel/helper-create-class-features-plugin" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" + "@babel/plugin-syntax-typescript" "^7.28.6" -"@babel/plugin-transform-unicode-escapes@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz" - integrity sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q== +"@babel/plugin-transform-unicode-escapes@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz" + integrity sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-unicode-property-regex@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz" - integrity sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg== +"@babel/plugin-transform-unicode-property-regex@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.28.6.tgz" + integrity sha512-4Wlbdl/sIZjzi/8St0evF0gEZrgOswVO6aOzqxh1kDZOl9WmLrHq2HtGhnOJZmHZYKP8WZ1MDLCt5DAWwRo57A== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-create-regexp-features-plugin" "^7.28.5" + "@babel/helper-plugin-utils" "^7.28.6" -"@babel/plugin-transform-unicode-regex@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz" - integrity sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA== +"@babel/plugin-transform-unicode-regex@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz" + integrity sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-create-regexp-features-plugin" "^7.27.1" + "@babel/helper-plugin-utils" "^7.27.1" -"@babel/plugin-transform-unicode-sets-regex@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz" - integrity sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ== +"@babel/plugin-transform-unicode-sets-regex@^7.28.6": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.28.6.tgz" + integrity sha512-/wHc/paTUmsDYN7SZkpWxogTOBNnlx7nBQYfy6JJlCT7G3mVhltk3e++N7zV0XfgGsrqBxd4rJQt9H16I21Y1Q== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-create-regexp-features-plugin" "^7.28.5" + "@babel/helper-plugin-utils" "^7.28.6" "@babel/preset-env@^7.12.1", "@babel/preset-env@^7.18.2", "@babel/preset-env@^7.19.4", "@babel/preset-env@^7.20.2", "@babel/preset-env@^7.25.9": - version "7.26.0" - resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz" - integrity sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw== - dependencies: - "@babel/compat-data" "^7.26.0" - "@babel/helper-compilation-targets" "^7.25.9" - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-validator-option" "^7.25.9" - "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.25.9" - "@babel/plugin-bugfix-safari-class-field-initializer-scope" "^7.25.9" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.25.9" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.25.9" - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.25.9" + version "7.29.5" + resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.29.5.tgz" + integrity sha512-/69t2aEzGKHD76DyLbHysF/QH2LJOB8iFnYO37unDTKBTubzcMRv0f3H5EiN1Q6ajOd/eB7dAInF0qdFVS06kA== + dependencies: + "@babel/compat-data" "^7.29.3" + "@babel/helper-compilation-targets" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" + "@babel/helper-validator-option" "^7.27.1" + "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.28.5" + "@babel/plugin-bugfix-safari-class-field-initializer-scope" "^7.27.1" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.27.1" + "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array" "^7.29.3" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.27.1" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.28.6" "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" - "@babel/plugin-syntax-import-assertions" "^7.26.0" - "@babel/plugin-syntax-import-attributes" "^7.26.0" + "@babel/plugin-syntax-import-assertions" "^7.28.6" + "@babel/plugin-syntax-import-attributes" "^7.28.6" "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.25.9" - "@babel/plugin-transform-async-generator-functions" "^7.25.9" - "@babel/plugin-transform-async-to-generator" "^7.25.9" - "@babel/plugin-transform-block-scoped-functions" "^7.25.9" - "@babel/plugin-transform-block-scoping" "^7.25.9" - "@babel/plugin-transform-class-properties" "^7.25.9" - "@babel/plugin-transform-class-static-block" "^7.26.0" - "@babel/plugin-transform-classes" "^7.25.9" - "@babel/plugin-transform-computed-properties" "^7.25.9" - "@babel/plugin-transform-destructuring" "^7.25.9" - "@babel/plugin-transform-dotall-regex" "^7.25.9" - "@babel/plugin-transform-duplicate-keys" "^7.25.9" - "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.25.9" - "@babel/plugin-transform-dynamic-import" "^7.25.9" - "@babel/plugin-transform-exponentiation-operator" "^7.25.9" - "@babel/plugin-transform-export-namespace-from" "^7.25.9" - "@babel/plugin-transform-for-of" "^7.25.9" - "@babel/plugin-transform-function-name" "^7.25.9" - "@babel/plugin-transform-json-strings" "^7.25.9" - "@babel/plugin-transform-literals" "^7.25.9" - "@babel/plugin-transform-logical-assignment-operators" "^7.25.9" - "@babel/plugin-transform-member-expression-literals" "^7.25.9" - "@babel/plugin-transform-modules-amd" "^7.25.9" - "@babel/plugin-transform-modules-commonjs" "^7.25.9" - "@babel/plugin-transform-modules-systemjs" "^7.25.9" - "@babel/plugin-transform-modules-umd" "^7.25.9" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.25.9" - "@babel/plugin-transform-new-target" "^7.25.9" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.25.9" - "@babel/plugin-transform-numeric-separator" "^7.25.9" - "@babel/plugin-transform-object-rest-spread" "^7.25.9" - "@babel/plugin-transform-object-super" "^7.25.9" - "@babel/plugin-transform-optional-catch-binding" "^7.25.9" - "@babel/plugin-transform-optional-chaining" "^7.25.9" - "@babel/plugin-transform-parameters" "^7.25.9" - "@babel/plugin-transform-private-methods" "^7.25.9" - "@babel/plugin-transform-private-property-in-object" "^7.25.9" - "@babel/plugin-transform-property-literals" "^7.25.9" - "@babel/plugin-transform-regenerator" "^7.25.9" - "@babel/plugin-transform-regexp-modifiers" "^7.26.0" - "@babel/plugin-transform-reserved-words" "^7.25.9" - "@babel/plugin-transform-shorthand-properties" "^7.25.9" - "@babel/plugin-transform-spread" "^7.25.9" - "@babel/plugin-transform-sticky-regex" "^7.25.9" - "@babel/plugin-transform-template-literals" "^7.25.9" - "@babel/plugin-transform-typeof-symbol" "^7.25.9" - "@babel/plugin-transform-unicode-escapes" "^7.25.9" - "@babel/plugin-transform-unicode-property-regex" "^7.25.9" - "@babel/plugin-transform-unicode-regex" "^7.25.9" - "@babel/plugin-transform-unicode-sets-regex" "^7.25.9" + "@babel/plugin-transform-arrow-functions" "^7.27.1" + "@babel/plugin-transform-async-generator-functions" "^7.29.0" + "@babel/plugin-transform-async-to-generator" "^7.28.6" + "@babel/plugin-transform-block-scoped-functions" "^7.27.1" + "@babel/plugin-transform-block-scoping" "^7.28.6" + "@babel/plugin-transform-class-properties" "^7.28.6" + "@babel/plugin-transform-class-static-block" "^7.28.6" + "@babel/plugin-transform-classes" "^7.28.6" + "@babel/plugin-transform-computed-properties" "^7.28.6" + "@babel/plugin-transform-destructuring" "^7.28.5" + "@babel/plugin-transform-dotall-regex" "^7.28.6" + "@babel/plugin-transform-duplicate-keys" "^7.27.1" + "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.29.0" + "@babel/plugin-transform-dynamic-import" "^7.27.1" + "@babel/plugin-transform-explicit-resource-management" "^7.28.6" + "@babel/plugin-transform-exponentiation-operator" "^7.28.6" + "@babel/plugin-transform-export-namespace-from" "^7.27.1" + "@babel/plugin-transform-for-of" "^7.27.1" + "@babel/plugin-transform-function-name" "^7.27.1" + "@babel/plugin-transform-json-strings" "^7.28.6" + "@babel/plugin-transform-literals" "^7.27.1" + "@babel/plugin-transform-logical-assignment-operators" "^7.28.6" + "@babel/plugin-transform-member-expression-literals" "^7.27.1" + "@babel/plugin-transform-modules-amd" "^7.27.1" + "@babel/plugin-transform-modules-commonjs" "^7.28.6" + "@babel/plugin-transform-modules-systemjs" "^7.29.4" + "@babel/plugin-transform-modules-umd" "^7.27.1" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.29.0" + "@babel/plugin-transform-new-target" "^7.27.1" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.28.6" + "@babel/plugin-transform-numeric-separator" "^7.28.6" + "@babel/plugin-transform-object-rest-spread" "^7.28.6" + "@babel/plugin-transform-object-super" "^7.27.1" + "@babel/plugin-transform-optional-catch-binding" "^7.28.6" + "@babel/plugin-transform-optional-chaining" "^7.28.6" + "@babel/plugin-transform-parameters" "^7.27.7" + "@babel/plugin-transform-private-methods" "^7.28.6" + "@babel/plugin-transform-private-property-in-object" "^7.28.6" + "@babel/plugin-transform-property-literals" "^7.27.1" + "@babel/plugin-transform-regenerator" "^7.29.0" + "@babel/plugin-transform-regexp-modifiers" "^7.28.6" + "@babel/plugin-transform-reserved-words" "^7.27.1" + "@babel/plugin-transform-shorthand-properties" "^7.27.1" + "@babel/plugin-transform-spread" "^7.28.6" + "@babel/plugin-transform-sticky-regex" "^7.27.1" + "@babel/plugin-transform-template-literals" "^7.27.1" + "@babel/plugin-transform-typeof-symbol" "^7.27.1" + "@babel/plugin-transform-unicode-escapes" "^7.27.1" + "@babel/plugin-transform-unicode-property-regex" "^7.28.6" + "@babel/plugin-transform-unicode-regex" "^7.27.1" + "@babel/plugin-transform-unicode-sets-regex" "^7.28.6" "@babel/preset-modules" "0.1.6-no-external-plugins" - babel-plugin-polyfill-corejs2 "^0.4.10" - babel-plugin-polyfill-corejs3 "^0.10.6" - babel-plugin-polyfill-regenerator "^0.6.1" - core-js-compat "^3.38.1" + babel-plugin-polyfill-corejs2 "^0.4.15" + babel-plugin-polyfill-corejs3 "^0.14.0" + babel-plugin-polyfill-regenerator "^0.6.6" + core-js-compat "^3.48.0" semver "^6.3.1" "@babel/preset-modules@0.1.6-no-external-plugins": @@ -1287,72 +1304,69 @@ esutils "^2.0.2" "@babel/preset-react@^7.12.5", "@babel/preset-react@^7.17.12", "@babel/preset-react@^7.18.6", "@babel/preset-react@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.25.9.tgz" - integrity sha512-D3to0uSPiWE7rBrdIICCd0tJSIGpLaaGptna2+w7Pft5xMqLpA1sz99DK5TZ1TjGbdQ/VI1eCSZ06dv3lT4JOw== + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.28.5.tgz" + integrity sha512-Z3J8vhRq7CeLjdC58jLv4lnZ5RKFUJWqH5emvxmv9Hv3BD1T9R/Im713R4MTKwvFaV74ejZ3sM01LyEKk4ugNQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-validator-option" "^7.25.9" - "@babel/plugin-transform-react-display-name" "^7.25.9" - "@babel/plugin-transform-react-jsx" "^7.25.9" - "@babel/plugin-transform-react-jsx-development" "^7.25.9" - "@babel/plugin-transform-react-pure-annotations" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-validator-option" "^7.27.1" + "@babel/plugin-transform-react-display-name" "^7.28.0" + "@babel/plugin-transform-react-jsx" "^7.27.1" + "@babel/plugin-transform-react-jsx-development" "^7.27.1" + "@babel/plugin-transform-react-pure-annotations" "^7.27.1" "@babel/preset-typescript@^7.17.12", "@babel/preset-typescript@^7.18.6", "@babel/preset-typescript@^7.21.0", "@babel/preset-typescript@^7.25.9": - version "7.26.0" - resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz" - integrity sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg== - dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-validator-option" "^7.25.9" - "@babel/plugin-syntax-jsx" "^7.25.9" - "@babel/plugin-transform-modules-commonjs" "^7.25.9" - "@babel/plugin-transform-typescript" "^7.25.9" - -"@babel/runtime-corejs3@^7.18.3", "@babel/runtime-corejs3@^7.25.9": - version "7.26.0" - resolved "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.26.0.tgz" - integrity sha512-YXHu5lN8kJCb1LOb9PgV6pvak43X2h4HvRApcN5SdWeaItQOzfn1hgP6jasD6KWQyJDBxrVmA9o9OivlnNJK/w== - dependencies: - core-js-pure "^3.30.2" - regenerator-runtime "^0.14.0" - -"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3", "@babel/runtime@^7.25.9", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7": - version "7.26.0" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz" - integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw== - dependencies: - regenerator-runtime "^0.14.0" - -"@babel/template@^7.12.7", "@babel/template@^7.25.9", "@babel/template@^7.3.3": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz" - integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== - dependencies: - "@babel/code-frame" "^7.25.9" - "@babel/parser" "^7.25.9" - "@babel/types" "^7.25.9" - -"@babel/traverse@^7.12.9", "@babel/traverse@^7.18.2", "@babel/traverse@^7.25.9", "@babel/traverse@^7.7.2": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz" - integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw== - dependencies: - "@babel/code-frame" "^7.25.9" - "@babel/generator" "^7.25.9" - "@babel/parser" "^7.25.9" - "@babel/template" "^7.25.9" - "@babel/types" "^7.25.9" + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz" + integrity sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g== + dependencies: + "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-validator-option" "^7.27.1" + "@babel/plugin-syntax-jsx" "^7.27.1" + "@babel/plugin-transform-modules-commonjs" "^7.27.1" + "@babel/plugin-transform-typescript" "^7.28.5" + +"@babel/runtime-corejs3@^7.18.3": + version "7.29.2" + resolved "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.29.2.tgz" + integrity sha512-Lc94FOD5+0aXhdb0Tdg3RUtqT6yWbI/BbFWvlaSJ3gAb9Ks+99nHRDKADVqC37er4eCB0fHyWT+y+K3QOvJKbw== + dependencies: + core-js-pure "^3.48.0" + +"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3", "@babel/runtime@^7.25.9", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7": + version "7.29.2" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz" + integrity sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g== + +"@babel/template@^7.12.7", "@babel/template@^7.28.6", "@babel/template@^7.3.3": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz" + integrity sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ== + dependencies: + "@babel/code-frame" "^7.28.6" + "@babel/parser" "^7.28.6" + "@babel/types" "^7.28.6" + +"@babel/traverse@^7.12.9", "@babel/traverse@^7.18.2", "@babel/traverse@^7.25.9", "@babel/traverse@^7.27.1", "@babel/traverse@^7.28.5", "@babel/traverse@^7.28.6", "@babel/traverse@^7.29.0", "@babel/traverse@^7.7.2": + version "7.29.0" + resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz" + integrity sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA== + dependencies: + "@babel/code-frame" "^7.29.0" + "@babel/generator" "^7.29.0" + "@babel/helper-globals" "^7.28.0" + "@babel/parser" "^7.29.0" + "@babel/template" "^7.28.6" + "@babel/types" "^7.29.0" debug "^4.3.1" - globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.12.6", "@babel/types@^7.12.7", "@babel/types@^7.20.0", "@babel/types@^7.20.7", "@babel/types@^7.21.3", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": - version "7.26.0" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz" - integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA== +"@babel/types@^7.0.0", "@babel/types@^7.12.6", "@babel/types@^7.12.7", "@babel/types@^7.20.0", "@babel/types@^7.20.7", "@babel/types@^7.21.3", "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.28.2", "@babel/types@^7.28.5", "@babel/types@^7.28.6", "@babel/types@^7.29.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": + version "7.29.0" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz" + integrity sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A== dependencies: - "@babel/helper-string-parser" "^7.25.9" - "@babel/helper-validator-identifier" "^7.25.9" + "@babel/helper-string-parser" "^7.27.1" + "@babel/helper-validator-identifier" "^7.28.5" "@bcoe/v8-coverage@^0.2.3": version "0.2.3" @@ -1369,42 +1383,15 @@ resolved "https://registry.npmjs.org/@blakeembrey/template/-/template-1.2.0.tgz" integrity sha512-w/63nURdkRPpg3AXbNr7lPv6HgOuVDyefTumiXsbXxtIwcuk5EXayWR5OpSwDjsQPgaYsfUSedMduaNOjAYY8A== -"@braintree/sanitize-url@^7.0.1": - version "7.1.0" - resolved "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-7.1.0.tgz" - integrity sha512-o+UlMLt49RvtCASlOMW0AkHnabN9wR9rwCCherxO0yG4Npy34GkvrAqdXQvrhNs+jh+gkK8gB8Lf05qL/O7KWg== - -"@chevrotain/cst-dts-gen@11.0.3": - version "11.0.3" - resolved "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.3.tgz" - integrity sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ== - dependencies: - "@chevrotain/gast" "11.0.3" - "@chevrotain/types" "11.0.3" - lodash-es "4.17.21" - -"@chevrotain/gast@11.0.3": - version "11.0.3" - resolved "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.0.3.tgz" - integrity sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q== - dependencies: - "@chevrotain/types" "11.0.3" - lodash-es "4.17.21" - -"@chevrotain/regexp-to-ast@11.0.3": - version "11.0.3" - resolved "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.3.tgz" - integrity sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA== - -"@chevrotain/types@11.0.3": - version "11.0.3" - resolved "https://registry.npmjs.org/@chevrotain/types/-/types-11.0.3.tgz" - integrity sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ== +"@braintree/sanitize-url@^7.1.1": + version "7.1.2" + resolved "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-7.1.2.tgz" + integrity sha512-jigsZK+sMF/cuiB7sERuo9V7N9jx+dhmHHnQyDSVdpZwVutaBu7WvNYqMDLSgFgfB30n452TP3vjDAvFC973mA== -"@chevrotain/utils@11.0.3": - version "11.0.3" - resolved "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.0.3.tgz" - integrity sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ== +"@chevrotain/types@~11.1.1": + version "11.1.2" + resolved "https://registry.npmjs.org/@chevrotain/types/-/types-11.1.2.tgz" + integrity sha512-U+HFai5+zmJCkK86QsaJtoITlboZHBqrVketcO2ROv865xfCMSFpELQoz1GkX5GzME8pTa+3kbKrZHQtI0gdbw== "@colors/colors@1.5.0": version "1.5.0" @@ -1413,7 +1400,7 @@ "@colors/colors@1.6.0", "@colors/colors@^1.6.0": version "1.6.0" - resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.6.0.tgz#ec6cd237440700bc23ca23087f513c75508958b0" + resolved "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz" integrity sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA== "@cspell/cspell-bundled-dicts@8.19.4": @@ -1510,86 +1497,86 @@ integrity sha512-ekMWuNlFiVGfsKhfj4nmc8JCA+1ZltwJgxiKgDuwYtR09ie340RfXFF6YRd2VTW5zN7l4F1PfaAaPklVz6utSg== "@cspell/dict-ada@^4.1.0": - version "4.1.0" - resolved "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.1.0.tgz" - integrity sha512-7SvmhmX170gyPd+uHXrfmqJBY5qLcCX8kTGURPVeGxmt8XNXT75uu9rnZO+jwrfuU2EimNoArdVy5GZRGljGNg== + version "4.1.1" + resolved "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.1.1.tgz" + integrity sha512-E+0YW9RhZod/9Qy2gxfNZiHJjCYFlCdI69br1eviQQWB8yOTJX0JHXLs79kOYhSW0kINPVUdvddEBe6Lu6CjGQ== "@cspell/dict-al@^1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@cspell/dict-al/-/dict-al-1.1.0.tgz" - integrity sha512-PtNI1KLmYkELYltbzuoztBxfi11jcE9HXBHCpID2lou/J4VMYKJPNqe4ZjVzSI9NYbMnMnyG3gkbhIdx66VSXg== + version "1.1.1" + resolved "https://registry.npmjs.org/@cspell/dict-al/-/dict-al-1.1.1.tgz" + integrity sha512-sD8GCaZetgQL4+MaJLXqbzWcRjfKVp8x+px3HuCaaiATAAtvjwUQ5/Iubiqwfd1boIh2Y1/3EgM3TLQ7Q8e0wQ== "@cspell/dict-aws@^4.0.10": - version "4.0.10" - resolved "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-4.0.10.tgz" - integrity sha512-0qW4sI0GX8haELdhfakQNuw7a2pnWXz3VYQA2MpydH2xT2e6EN9DWFpKAi8DfcChm8MgDAogKkoHtIo075iYng== + version "4.0.17" + resolved "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-4.0.17.tgz" + integrity sha512-ORcblTWcdlGjIbWrgKF+8CNEBQiLVKdUOFoTn0KPNkAYnFcdPP0muT4892h7H4Xafh3j72wqB4/loQ6Nti9E/w== "@cspell/dict-bash@^4.2.0": - version "4.2.0" - resolved "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-4.2.0.tgz" - integrity sha512-HOyOS+4AbCArZHs/wMxX/apRkjxg6NDWdt0jF9i9XkvJQUltMwEhyA2TWYjQ0kssBsnof+9amax2lhiZnh3kCg== + version "4.2.2" + resolved "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-4.2.2.tgz" + integrity sha512-kyWbwtX3TsCf5l49gGQIZkRLaB/P8g73GDRm41Zu8Mv51kjl2H7Au0TsEvHv7jzcsRLS6aUYaZv6Zsvk1fOz+Q== dependencies: - "@cspell/dict-shell" "1.1.0" + "@cspell/dict-shell" "1.1.2" "@cspell/dict-companies@^3.1.15": - version "3.2.1" - resolved "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.2.1.tgz" - integrity sha512-ryaeJ1KhTTKL4mtinMtKn8wxk6/tqD4vX5tFP+Hg89SiIXmbMk5vZZwVf+eyGUWJOyw5A1CVj9EIWecgoi+jYQ== + version "3.2.11" + resolved "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.2.11.tgz" + integrity sha512-0cmafbcz2pTHXLd59eLR1gvDvN6aWAOM0+cIL4LLF9GX9yB2iKDNrKsvs4tJRqutoaTdwNFBbV0FYv+6iCtebQ== "@cspell/dict-cpp@^6.0.8": - version "6.0.8" - resolved "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.8.tgz" - integrity sha512-BzurRZilWqaJt32Gif6/yCCPi+FtrchjmnehVEIFzbWyeBd/VOUw77IwrEzehZsu5cRU91yPWuWp5fUsKfDAXA== + version "6.0.15" + resolved "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.15.tgz" + integrity sha512-N7MKK3llRNoBncygvrnLaGvmjo4xzVr5FbtAc9+MFGHK6/LeSySBupr1FM72XDaVSIsmBEe7sDYCHHwlI9Jb2w== "@cspell/dict-cryptocurrencies@^5.0.4": - version "5.0.4" - resolved "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-5.0.4.tgz" - integrity sha512-6iFu7Abu+4Mgqq08YhTKHfH59mpMpGTwdzDB2Y8bbgiwnGFCeoiSkVkgLn1Kel2++hYcZ8vsAW/MJS9oXxuMag== + version "5.0.5" + resolved "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-5.0.5.tgz" + integrity sha512-R68hYYF/rtlE6T/dsObStzN5QZw+0aQBinAXuWCVqwdS7YZo0X33vGMfChkHaiCo3Z2+bkegqHlqxZF4TD3rUA== "@cspell/dict-csharp@^4.0.6": - version "4.0.6" - resolved "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.6.tgz" - integrity sha512-w/+YsqOknjQXmIlWDRmkW+BHBPJZ/XDrfJhZRQnp0wzpPOGml7W0q1iae65P2AFRtTdPKYmvSz7AL5ZRkCnSIw== + version "4.0.8" + resolved "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.8.tgz" + integrity sha512-qmk45pKFHSxckl5mSlbHxmDitSsGMlk/XzFgt7emeTJWLNSTUK//MbYAkBNRtfzB4uD7pAFiKgpKgtJrTMRnrQ== "@cspell/dict-css@^4.0.17": - version "4.0.17" - resolved "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.0.17.tgz" - integrity sha512-2EisRLHk6X/PdicybwlajLGKF5aJf4xnX2uuG5lexuYKt05xV/J/OiBADmi8q9obhxf1nesrMQbqAt+6CsHo/w== + version "4.1.1" + resolved "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.1.1.tgz" + integrity sha512-y/Vgo6qY08e1t9OqR56qjoFLBCpi4QfWMf2qzD1l9omRZwvSMQGRPz4x0bxkkkU4oocMAeztjzCsmLew//c/8w== "@cspell/dict-dart@^2.3.0": - version "2.3.0" - resolved "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.3.0.tgz" - integrity sha512-1aY90lAicek8vYczGPDKr70pQSTQHwMFLbmWKTAI6iavmb1fisJBS1oTmMOKE4ximDf86MvVN6Ucwx3u/8HqLg== + version "2.3.2" + resolved "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.3.2.tgz" + integrity sha512-sUiLW56t9gfZcu8iR/5EUg+KYyRD83Cjl3yjDEA2ApVuJvK1HhX+vn4e4k4YfjpUQMag8XO2AaRhARE09+/rqw== -"@cspell/dict-data-science@^2.0.8": - version "2.0.8" - resolved "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-2.0.8.tgz" - integrity sha512-uyAtT+32PfM29wRBeAkUSbkytqI8bNszNfAz2sGPtZBRmsZTYugKMEO9eDjAIE/pnT9CmbjNuoiXhk+Ss4fCOg== +"@cspell/dict-data-science@^2.0.13", "@cspell/dict-data-science@^2.0.8": + version "2.0.13" + resolved "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-2.0.13.tgz" + integrity sha512-l1HMEhBJkPmw4I2YGVu2eBSKM89K9pVF+N6qIr5Uo5H3O979jVodtuwP8I7LyPrJnC6nz28oxeGRCLh9xC5CVA== "@cspell/dict-django@^4.1.4": - version "4.1.4" - resolved "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-4.1.4.tgz" - integrity sha512-fX38eUoPvytZ/2GA+g4bbdUtCMGNFSLbdJJPKX2vbewIQGfgSFJKY56vvcHJKAvw7FopjvgyS/98Ta9WN1gckg== + version "4.1.6" + resolved "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-4.1.6.tgz" + integrity sha512-SdbSFDGy9ulETqNz15oWv2+kpWLlk8DJYd573xhIkeRdcXOjskRuxjSZPKfW7O3NxN/KEf3gm3IevVOiNuFS+w== "@cspell/dict-docker@^1.1.13": - version "1.1.14" - resolved "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.14.tgz" - integrity sha512-p6Qz5mokvcosTpDlgSUREdSbZ10mBL3ndgCdEKMqjCSZJFdfxRdNdjrGER3lQ6LMq5jGr1r7nGXA0gvUJK80nw== + version "1.1.17" + resolved "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.17.tgz" + integrity sha512-OcnVTIpHIYYKhztNTyK8ShAnXTfnqs43hVH6p0py0wlcwRIXe5uj4f12n7zPf2CeBI7JAlPjEsV0Rlf4hbz/xQ== "@cspell/dict-dotnet@^5.0.9": - version "5.0.9" - resolved "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-5.0.9.tgz" - integrity sha512-JGD6RJW5sHtO5lfiJl11a5DpPN6eKSz5M1YBa1I76j4dDOIqgZB6rQexlDlK1DH9B06X4GdDQwdBfnpAB0r2uQ== + version "5.0.13" + resolved "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-5.0.13.tgz" + integrity sha512-xPp7jMnFpOri7tzmqmm/dXMolXz1t2bhNqxYkOyMqXhvs08oc7BFs+EsbDY0X7hqiISgeFZGNqn0dOCr+ncPYw== "@cspell/dict-elixir@^4.0.7": - version "4.0.7" - resolved "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.7.tgz" - integrity sha512-MAUqlMw73mgtSdxvbAvyRlvc3bYnrDqXQrx5K9SwW8F7fRYf9V4vWYFULh+UWwwkqkhX9w03ZqFYRTdkFku6uA== + version "4.0.8" + resolved "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.8.tgz" + integrity sha512-CyfphrbMyl4Ms55Vzuj+mNmd693HjBFr9hvU+B2YbFEZprE5AG+EXLYTMRWrXbpds4AuZcvN3deM2XVB80BN/Q== "@cspell/dict-en-common-misspellings@^2.0.10": - version "2.0.10" - resolved "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.10.tgz" - integrity sha512-80mXJLtr0tVEtzowrI7ycVae/ULAYImZUlr0kUTpa8i57AUk7Zy3pYBs44EYIKW7ZC9AHu4Qjjfq4vriAtyTDQ== + version "2.1.12" + resolved "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.1.12.tgz" + integrity sha512-14Eu6QGqyksqOd4fYPuRb58lK1Va7FQK9XxFsRKnZU8LhL3N+kj7YKDW+7aIaAN/0WGEqslGP6lGbQzNti8Akw== "@cspell/dict-en-gb@1.1.33": version "1.1.33" @@ -1597,211 +1584,211 @@ integrity sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g== "@cspell/dict-en_us@^4.4.3": - version "4.4.6" - resolved "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.4.6.tgz" - integrity sha512-9QFpNzyvqNkCc3QCJb2RmG87rXz2Iz3R6o9fknOyzN7HL/LRMwipuksricriPYPs+h3ZSQm4Jtgc+sX4gWY5vg== + version "4.4.33" + resolved "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.4.33.tgz" + integrity sha512-zWftVqfUStDA37wO1ZNDN1qMJOfcxELa8ucHW8W8wBAZY3TK5Nb6deLogCK/IJi/Qljf30dwwuqqv84Qqle9Tw== "@cspell/dict-filetypes@^3.0.11": - version "3.0.12" - resolved "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-3.0.12.tgz" - integrity sha512-+ds5wgNdlUxuJvhg8A1TjuSpalDFGCh7SkANCWvIplg6QZPXL4j83lqxP7PgjHpx7PsBUS7vw0aiHPjZy9BItw== + version "3.0.18" + resolved "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-3.0.18.tgz" + integrity sha512-yU7RKD/x1IWmDLzWeiItMwgV+6bUcU/af23uS0+uGiFUbsY1qWV/D4rxlAAO6Z7no3J2z8aZOkYIOvUrJq0Rcw== "@cspell/dict-flutter@^1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@cspell/dict-flutter/-/dict-flutter-1.1.0.tgz" - integrity sha512-3zDeS7zc2p8tr9YH9tfbOEYfopKY/srNsAa+kE3rfBTtQERAZeOhe5yxrnTPoufctXLyuUtcGMUTpxr3dO0iaA== + version "1.1.1" + resolved "https://registry.npmjs.org/@cspell/dict-flutter/-/dict-flutter-1.1.1.tgz" + integrity sha512-UlOzRcH2tNbFhZmHJN48Za/2/MEdRHl2BMkCWZBYs+30b91mWvBfzaN4IJQU7dUZtowKayVIF9FzvLZtZokc5A== "@cspell/dict-fonts@^4.0.4": - version "4.0.4" - resolved "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-4.0.4.tgz" - integrity sha512-cHFho4hjojBcHl6qxidl9CvUb492IuSk7xIf2G2wJzcHwGaCFa2o3gRcxmIg1j62guetAeDDFELizDaJlVRIOg== + version "4.0.6" + resolved "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-4.0.6.tgz" + integrity sha512-aR/0csY01dNb0A1tw/UmN9rKgHruUxsYsvXu6YlSBJFu60s26SKr/k1o4LavpHTQ+lznlYMqAvuxGkE4Flliqw== "@cspell/dict-fsharp@^1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@cspell/dict-fsharp/-/dict-fsharp-1.1.0.tgz" - integrity sha512-oguWmHhGzgbgbEIBKtgKPrFSVAFtvGHaQS0oj+vacZqMObwkapcTGu7iwf4V3Bc2T3caf0QE6f6rQfIJFIAVsw== + version "1.1.1" + resolved "https://registry.npmjs.org/@cspell/dict-fsharp/-/dict-fsharp-1.1.1.tgz" + integrity sha512-imhs0u87wEA4/cYjgzS0tAyaJpwG7vwtC8UyMFbwpmtw+/bgss+osNfyqhYRyS/ehVCWL17Ewx2UPkexjKyaBA== "@cspell/dict-fullstack@^3.2.6": - version "3.2.6" - resolved "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.6.tgz" - integrity sha512-cSaq9rz5RIU9j+0jcF2vnKPTQjxGXclntmoNp4XB7yFX2621PxJcekGjwf/lN5heJwVxGLL9toR0CBlGKwQBgA== + version "3.2.9" + resolved "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.9.tgz" + integrity sha512-diZX+usW5aZ4/b2T0QM/H/Wl9aNMbdODa1Jq0ReBr/jazmNeWjd+PyqeVgzd1joEaHY+SAnjrf/i9CwKd2ZtWQ== "@cspell/dict-gaming-terms@^1.1.1": - version "1.1.1" - resolved "https://registry.npmjs.org/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.1.1.tgz" - integrity sha512-tb8GFxjTLDQstkJcJ90lDqF4rKKlMUKs5/ewePN9P+PYRSehqDpLI5S5meOfPit8LGszeOrjUdBQ4zXo7NpMyQ== + version "1.1.2" + resolved "https://registry.npmjs.org/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.1.2.tgz" + integrity sha512-9XnOvaoTBscq0xuD6KTEIkk9hhdfBkkvJAIsvw3JMcnp1214OCGW8+kako5RqQ2vTZR3Tnf3pc57o7VgkM0q1Q== "@cspell/dict-git@^3.0.4": - version "3.0.4" - resolved "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-3.0.4.tgz" - integrity sha512-C44M+m56rYn6QCsLbiKiedyPTMZxlDdEYAsPwwlL5bhMDDzXZ3Ic8OCQIhMbiunhCOJJT+er4URmOmM+sllnjg== + version "3.1.0" + resolved "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-3.1.0.tgz" + integrity sha512-KEt9zGkxqGy2q1nwH4CbyqTSv5nadpn8BAlDnzlRcnL0Xb3LX9xTgSGShKvzb0bw35lHoYyLWN2ZKAqbC4pgGQ== "@cspell/dict-golang@^6.0.20": - version "6.0.20" - resolved "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-6.0.20.tgz" - integrity sha512-b7nd9XXs+apMMzNSWorjirQsbmlwcTC0ViQJU8u+XNose3z0y7oNeEpbTPTVoN1+1sO9aOHuFwfwoOMFCDS14Q== + version "6.0.26" + resolved "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-6.0.26.tgz" + integrity sha512-YKA7Xm5KeOd14v5SQ4ll6afe9VSy3a2DWM7L9uBq4u3lXToRBQ1W5PRa+/Q9udd+DTURyVVnQ+7b9cnOlNxaRg== "@cspell/dict-google@^1.0.8": - version "1.0.8" - resolved "https://registry.npmjs.org/@cspell/dict-google/-/dict-google-1.0.8.tgz" - integrity sha512-BnMHgcEeaLyloPmBs8phCqprI+4r2Jb8rni011A8hE+7FNk7FmLE3kiwxLFrcZnnb7eqM0agW4zUaNoB0P+z8A== + version "1.0.9" + resolved "https://registry.npmjs.org/@cspell/dict-google/-/dict-google-1.0.9.tgz" + integrity sha512-biL65POqialY0i4g6crj7pR6JnBkbsPovB2WDYkj3H4TuC/QXv7Pu5pdPxeUJA6TSCHI7T5twsO4VSVyRxD9CA== "@cspell/dict-haskell@^4.0.5": - version "4.0.5" - resolved "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-4.0.5.tgz" - integrity sha512-s4BG/4tlj2pPM9Ha7IZYMhUujXDnI0Eq1+38UTTCpatYLbQqDwRFf2KNPLRqkroU+a44yTUAe0rkkKbwy4yRtQ== + version "4.0.6" + resolved "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-4.0.6.tgz" + integrity sha512-ib8SA5qgftExpYNjWhpYIgvDsZ/0wvKKxSP+kuSkkak520iPvTJumEpIE+qPcmJQo4NzdKMN8nEfaeci4OcFAQ== "@cspell/dict-html-symbol-entities@^4.0.3": - version "4.0.3" - resolved "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.3.tgz" - integrity sha512-aABXX7dMLNFdSE8aY844X4+hvfK7977sOWgZXo4MTGAmOzR8524fjbJPswIBK7GaD3+SgFZ2yP2o0CFvXDGF+A== + version "4.0.5" + resolved "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.5.tgz" + integrity sha512-429alTD4cE0FIwpMucvSN35Ld87HCyuM8mF731KU5Rm4Je2SG6hmVx7nkBsLyrmH3sQukTcr1GaiZsiEg8svPA== "@cspell/dict-html@^4.0.11": - version "4.0.11" - resolved "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.11.tgz" - integrity sha512-QR3b/PB972SRQ2xICR1Nw/M44IJ6rjypwzA4jn+GH8ydjAX9acFNfc+hLZVyNe0FqsE90Gw3evLCOIF0vy1vQw== + version "4.0.15" + resolved "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.15.tgz" + integrity sha512-GJYnYKoD9fmo2OI0aySEGZOjThnx3upSUvV7mmqUu8oG+mGgzqm82P/f7OqsuvTaInZZwZbo+PwJQd/yHcyFIw== "@cspell/dict-java@^5.0.11": - version "5.0.11" - resolved "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.11.tgz" - integrity sha512-T4t/1JqeH33Raa/QK/eQe26FE17eUCtWu+JsYcTLkQTci2dk1DfcIKo8YVHvZXBnuM43ATns9Xs0s+AlqDeH7w== + version "5.0.12" + resolved "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.12.tgz" + integrity sha512-qPSNhTcl7LGJ5Qp6VN71H8zqvRQK04S08T67knMq9hTA8U7G1sTKzLmBaDOFhq17vNX/+rT+rbRYp+B5Nwza1A== "@cspell/dict-julia@^1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@cspell/dict-julia/-/dict-julia-1.1.0.tgz" - integrity sha512-CPUiesiXwy3HRoBR3joUseTZ9giFPCydSKu2rkh6I2nVjXnl5vFHzOMLXpbF4HQ1tH2CNfnDbUndxD+I+7eL9w== + version "1.1.1" + resolved "https://registry.npmjs.org/@cspell/dict-julia/-/dict-julia-1.1.1.tgz" + integrity sha512-WylJR9TQ2cgwd5BWEOfdO3zvDB+L7kYFm0I9u0s9jKHWQ6yKmfKeMjU9oXxTBxIufhCXm92SKwwVNAC7gjv+yA== "@cspell/dict-k8s@^1.0.10": - version "1.0.10" - resolved "https://registry.npmjs.org/@cspell/dict-k8s/-/dict-k8s-1.0.10.tgz" - integrity sha512-313haTrX9prep1yWO7N6Xw4D6tvUJ0Xsx+YhCP+5YrrcIKoEw5Rtlg8R4PPzLqe6zibw6aJ+Eqq+y76Vx5BZkw== + version "1.0.12" + resolved "https://registry.npmjs.org/@cspell/dict-k8s/-/dict-k8s-1.0.12.tgz" + integrity sha512-2LcllTWgaTfYC7DmkMPOn9GsBWsA4DZdlun4po8s2ysTP7CPEnZc1ZfK6pZ2eI4TsZemlUQQ+NZxMe9/QutQxg== "@cspell/dict-kotlin@^1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@cspell/dict-kotlin/-/dict-kotlin-1.1.0.tgz" - integrity sha512-vySaVw6atY7LdwvstQowSbdxjXG6jDhjkWVWSjg1XsUckyzH1JRHXe9VahZz1i7dpoFEUOWQrhIe5B9482UyJQ== + version "1.1.1" + resolved "https://registry.npmjs.org/@cspell/dict-kotlin/-/dict-kotlin-1.1.1.tgz" + integrity sha512-J3NzzfgmxRvEeOe3qUXnSJQCd38i/dpF9/t3quuWh6gXM+krsAXP75dY1CzDmS8mrJAlBdVBeAW5eAZTD8g86Q== "@cspell/dict-latex@^4.0.3": - version "4.0.3" - resolved "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-4.0.3.tgz" - integrity sha512-2KXBt9fSpymYHxHfvhUpjUFyzrmN4c4P8mwIzweLyvqntBT3k0YGZJSriOdjfUjwSygrfEwiuPI1EMrvgrOMJw== + version "4.0.4" + resolved "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-4.0.4.tgz" + integrity sha512-YdTQhnTINEEm/LZgTzr9Voz4mzdOXH7YX+bSFs3hnkUHCUUtX/mhKgf1CFvZ0YNM2afjhQcmLaR9bDQVyYBvpA== "@cspell/dict-lorem-ipsum@^4.0.4": - version "4.0.4" - resolved "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.4.tgz" - integrity sha512-+4f7vtY4dp2b9N5fn0za/UR0kwFq2zDtA62JCbWHbpjvO9wukkbl4rZg4YudHbBgkl73HRnXFgCiwNhdIA1JPw== + version "4.0.5" + resolved "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.5.tgz" + integrity sha512-9a4TJYRcPWPBKkQAJ/whCu4uCAEgv/O2xAaZEI0n4y1/l18Yyx8pBKoIX5QuVXjjmKEkK7hi5SxyIsH7pFEK9Q== "@cspell/dict-lua@^4.0.7": - version "4.0.7" - resolved "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-4.0.7.tgz" - integrity sha512-Wbr7YSQw+cLHhTYTKV6cAljgMgcY+EUAxVIZW3ljKswEe4OLxnVJ7lPqZF5JKjlXdgCjbPSimsHqyAbC5pQN/Q== + version "4.0.8" + resolved "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-4.0.8.tgz" + integrity sha512-N4PkgNDMu9JVsRu7JBS/3E/dvfItRgk9w5ga2dKq+JupP2Y3lojNaAVFhXISh4Y0a6qXDn2clA6nvnavQ/jjLA== "@cspell/dict-makefile@^1.0.4": - version "1.0.4" - resolved "https://registry.npmjs.org/@cspell/dict-makefile/-/dict-makefile-1.0.4.tgz" - integrity sha512-E4hG/c0ekPqUBvlkrVvzSoAA+SsDA9bLi4xSV3AXHTVru7Y2bVVGMPtpfF+fI3zTkww/jwinprcU1LSohI3ylw== + version "1.0.5" + resolved "https://registry.npmjs.org/@cspell/dict-makefile/-/dict-makefile-1.0.5.tgz" + integrity sha512-4vrVt7bGiK8Rx98tfRbYo42Xo2IstJkAF4tLLDMNQLkQ86msDlYSKG1ZCk8Abg+EdNcFAjNhXIiNO+w4KflGAQ== "@cspell/dict-markdown@^2.0.10": - version "2.0.10" - resolved "https://registry.npmjs.org/@cspell/dict-markdown/-/dict-markdown-2.0.10.tgz" - integrity sha512-vtVa6L/84F9sTjclTYDkWJF/Vx2c5xzxBKkQp+CEFlxOF2SYgm+RSoEvAvg5vj4N5kuqR4350ZlY3zl2eA3MXw== + version "2.0.16" + resolved "https://registry.npmjs.org/@cspell/dict-markdown/-/dict-markdown-2.0.16.tgz" + integrity sha512-976RRqKv6cwhrxdFCQP2DdnBVB86BF57oQtPHy4Zbf4jF/i2Oy29MCrxirnOBalS1W6KQeto7NdfDXRAwkK4PQ== "@cspell/dict-monkeyc@^1.0.10": - version "1.0.10" - resolved "https://registry.npmjs.org/@cspell/dict-monkeyc/-/dict-monkeyc-1.0.10.tgz" - integrity sha512-7RTGyKsTIIVqzbvOtAu6Z/lwwxjGRtY5RkKPlXKHEoEAgIXwfDxb5EkVwzGQwQr8hF/D3HrdYbRT8MFBfsueZw== + version "1.0.12" + resolved "https://registry.npmjs.org/@cspell/dict-monkeyc/-/dict-monkeyc-1.0.12.tgz" + integrity sha512-MN7Vs11TdP5mbdNFQP5x2Ac8zOBm97ARg6zM5Sb53YQt/eMvXOMvrep7+/+8NJXs0jkp70bBzjqU4APcqBFNAw== "@cspell/dict-node@^5.0.7": - version "5.0.7" - resolved "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-5.0.7.tgz" - integrity sha512-ZaPpBsHGQCqUyFPKLyCNUH2qzolDRm1/901IO8e7btk7bEDF56DN82VD43gPvD4HWz3yLs/WkcLa01KYAJpnOw== + version "5.0.9" + resolved "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-5.0.9.tgz" + integrity sha512-hO+ga+uYZ/WA4OtiMEyKt5rDUlUyu3nXMf8KVEeqq2msYvAPdldKBGH7lGONg6R/rPhv53Rb+0Y1SLdoK1+7wQ== "@cspell/dict-npm@^5.2.1": - version "5.2.3" - resolved "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.2.3.tgz" - integrity sha512-EdGkCpAq66Mhi9Qldgsr+NvPVL4TdtmdlqDe4VBp0P3n6J0B7b0jT1MlVDIiLR+F1eqBfL0qjfHf0ey1CafeNw== + version "5.2.38" + resolved "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.2.38.tgz" + integrity sha512-21ucGRPYYhr91C2cDBoMPTrcIOStQv33xOqJB0JLoC5LAs2Sfj9EoPGhGb+gIFVHz6Ia7JQWE2SJsOVFJD1wmg== "@cspell/dict-php@^4.0.14": - version "4.0.14" - resolved "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-4.0.14.tgz" - integrity sha512-7zur8pyncYZglxNmqsRycOZ6inpDoVd4yFfz1pQRe5xaRWMiK3Km4n0/X/1YMWhh3e3Sl/fQg5Axb2hlN68t1g== + version "4.1.1" + resolved "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-4.1.1.tgz" + integrity sha512-EXelI+4AftmdIGtA8HL8kr4WlUE11OqCSVlnIgZekmTkEGSZdYnkFdiJ5IANSALtlQ1mghKjz+OFqVs6yowgWA== "@cspell/dict-powershell@^5.0.14": - version "5.0.14" - resolved "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-5.0.14.tgz" - integrity sha512-ktjjvtkIUIYmj/SoGBYbr3/+CsRGNXGpvVANrY0wlm/IoGlGywhoTUDYN0IsGwI2b8Vktx3DZmQkfb3Wo38jBA== + version "5.0.15" + resolved "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-5.0.15.tgz" + integrity sha512-l4S5PAcvCFcVDMJShrYD0X6Huv9dcsQPlsVsBGbH38wvuN7gS7+GxZFAjTNxDmTY1wrNi1cCatSg6Pu2BW4rgg== "@cspell/dict-public-licenses@^2.0.13": - version "2.0.13" - resolved "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.13.tgz" - integrity sha512-1Wdp/XH1ieim7CadXYE7YLnUlW0pULEjVl9WEeziZw3EKCAw8ZI8Ih44m4bEa5VNBLnuP5TfqC4iDautAleQzQ== + version "2.0.16" + resolved "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.16.tgz" + integrity sha512-EQRrPvEOmwhwWezV+W7LjXbIBjiy6y/shrET6Qcpnk3XANTzfvWflf9PnJ5kId/oKWvihFy0za0AV1JHd03pSQ== "@cspell/dict-python@^4.2.17": - version "4.2.18" - resolved "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.2.18.tgz" - integrity sha512-hYczHVqZBsck7DzO5LumBLJM119a3F17aj8a7lApnPIS7cmEwnPc2eACNscAHDk7qAo2127oI7axUoFMe9/g1g== + version "4.2.26" + resolved "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.2.26.tgz" + integrity sha512-hbjN6BjlSgZOG2dA2DtvYNGBM5Aq0i0dHaZjMOI9K/9vRicVvKbcCiBSSrR3b+jwjhQL5ff7HwG5xFaaci0GQA== dependencies: - "@cspell/dict-data-science" "^2.0.8" + "@cspell/dict-data-science" "^2.0.13" "@cspell/dict-r@^2.1.0": - version "2.1.0" - resolved "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-2.1.0.tgz" - integrity sha512-k2512wgGG0lTpTYH9w5Wwco+lAMf3Vz7mhqV8+OnalIE7muA0RSuD9tWBjiqLcX8zPvEJr4LdgxVju8Gk3OKyA== + version "2.1.1" + resolved "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-2.1.1.tgz" + integrity sha512-71Ka+yKfG4ZHEMEmDxc6+blFkeTTvgKbKAbwiwQAuKl3zpqs1Y0vUtwW2N4b3LgmSPhV3ODVY0y4m5ofqDuKMw== "@cspell/dict-ruby@^5.0.8": - version "5.0.8" - resolved "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-5.0.8.tgz" - integrity sha512-ixuTneU0aH1cPQRbWJvtvOntMFfeQR2KxT8LuAv5jBKqQWIHSxzGlp+zX3SVyoeR0kOWiu64/O5Yn836A5yMcQ== + version "5.1.1" + resolved "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-5.1.1.tgz" + integrity sha512-LHrp84oEV6q1ZxPPyj4z+FdKyq1XAKYPtmGptrd+uwHbrF/Ns5+fy6gtSi7pS+uc0zk3JdO9w/tPK+8N1/7WUA== "@cspell/dict-rust@^4.0.11": - version "4.0.11" - resolved "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.0.11.tgz" - integrity sha512-OGWDEEzm8HlkSmtD8fV3pEcO2XBpzG2XYjgMCJCRwb2gRKvR+XIm6Dlhs04N/K2kU+iH8bvrqNpM8fS/BFl0uw== + version "4.1.2" + resolved "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.1.2.tgz" + integrity sha512-O1FHrumYcO+HZti3dHfBPUdnDFkI+nbYK3pxYmiM1sr+G0ebOd6qchmswS0Wsc6ZdEVNiPYJY/gZQR6jfW3uOg== "@cspell/dict-scala@^5.0.7": - version "5.0.7" - resolved "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-5.0.7.tgz" - integrity sha512-yatpSDW/GwulzO3t7hB5peoWwzo+Y3qTc0pO24Jf6f88jsEeKmDeKkfgPbYuCgbE4jisGR4vs4+jfQZDIYmXPA== + version "5.0.9" + resolved "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-5.0.9.tgz" + integrity sha512-AjVcVAELgllybr1zk93CJ5wSUNu/Zb5kIubymR/GAYkMyBdYFCZ3Zbwn4Zz8GJlFFAbazABGOu0JPVbeY59vGg== -"@cspell/dict-shell@1.1.0", "@cspell/dict-shell@^1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@cspell/dict-shell/-/dict-shell-1.1.0.tgz" - integrity sha512-D/xHXX7T37BJxNRf5JJHsvziFDvh23IF/KvkZXNSh8VqcRdod3BAz9VGHZf6VDqcZXr1VRqIYR3mQ8DSvs3AVQ== +"@cspell/dict-shell@1.1.2", "@cspell/dict-shell@^1.1.0": + version "1.1.2" + resolved "https://registry.npmjs.org/@cspell/dict-shell/-/dict-shell-1.1.2.tgz" + integrity sha512-WqOUvnwcHK1X61wAfwyXq04cn7KYyskg90j4lLg3sGGKMW9Sq13hs91pqrjC44Q+lQLgCobrTkMDw9Wyl9nRFA== "@cspell/dict-software-terms@^5.0.5": - version "5.0.7" - resolved "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-5.0.7.tgz" - integrity sha512-6ttSc0/EzDN44DF2Bk/37cr3IntzuNcZ4MbUy/zEhfhDMiuQoXslILpAs/9FoKEuFpsm6A+8manT2GytWwr/HA== + version "5.2.2" + resolved "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-5.2.2.tgz" + integrity sha512-0CaYd6TAsKtEoA7tNswm1iptEblTzEe3UG8beG2cpSTHk7afWIVMtJLgXDv0f/Li67Lf3Z1Jf3JeXR7GsJ2TRw== "@cspell/dict-sql@^2.2.0": - version "2.2.0" - resolved "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.2.0.tgz" - integrity sha512-MUop+d1AHSzXpBvQgQkCiok8Ejzb+nrzyG16E8TvKL2MQeDwnIvMe3bv90eukP6E1HWb+V/MA/4pnq0pcJWKqQ== + version "2.2.1" + resolved "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.2.1.tgz" + integrity sha512-qDHF8MpAYCf4pWU8NKbnVGzkoxMNrFqBHyG/dgrlic5EQiKANCLELYtGlX5auIMDLmTf1inA0eNtv74tyRJ/vg== "@cspell/dict-svelte@^1.0.6": - version "1.0.6" - resolved "https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.6.tgz" - integrity sha512-8LAJHSBdwHCoKCSy72PXXzz7ulGROD0rP1CQ0StOqXOOlTUeSFaJJlxNYjlONgd2c62XBQiN2wgLhtPN+1Zv7Q== + version "1.0.7" + resolved "https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.7.tgz" + integrity sha512-hGZsGqP0WdzKkdpeVLBivRuSNzOTvN036EBmpOwxH+FTY2DuUH7ecW+cSaMwOgmq5JFSdTcbTNFlNC8HN8lhaQ== "@cspell/dict-swift@^2.0.5": - version "2.0.5" - resolved "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-2.0.5.tgz" - integrity sha512-3lGzDCwUmnrfckv3Q4eVSW3sK3cHqqHlPprFJZD4nAqt23ot7fic5ALR7J4joHpvDz36nHX34TgcbZNNZOC/JA== + version "2.0.6" + resolved "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-2.0.6.tgz" + integrity sha512-PnpNbrIbex2aqU1kMgwEKvCzgbkHtj3dlFLPMqW1vSniop7YxaDTtvTUO4zA++ugYAEL+UK8vYrBwDPTjjvSnA== "@cspell/dict-terraform@^1.1.1": - version "1.1.1" - resolved "https://registry.npmjs.org/@cspell/dict-terraform/-/dict-terraform-1.1.1.tgz" - integrity sha512-07KFDwCU7EnKl4hOZLsLKlj6Zceq/IsQ3LRWUyIjvGFfZHdoGtFdCp3ZPVgnFaAcd/DKv+WVkrOzUBSYqHopQQ== + version "1.1.3" + resolved "https://registry.npmjs.org/@cspell/dict-terraform/-/dict-terraform-1.1.3.tgz" + integrity sha512-gr6wxCydwSFyyBKhBA2xkENXtVFToheqYYGFvlMZXWjviynXmh+NK/JTvTCk/VHk3+lzbO9EEQKee6VjrAUSbA== "@cspell/dict-typescript@^3.2.1": - version "3.2.1" - resolved "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.2.1.tgz" - integrity sha512-jdnKg4rBl75GUBTsUD6nTJl7FGvaIt5wWcWP7TZSC3rV1LfkwvbUiY3PiGpfJlAIdnLYSeFWIpYU9gyVgz206w== + version "3.2.3" + resolved "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.2.3.tgz" + integrity sha512-zXh1wYsNljQZfWWdSPYwQhpwiuW0KPW1dSd8idjMRvSD0aSvWWHoWlrMsmZeRl4qM4QCEAjua8+cjflm41cQBg== "@cspell/dict-vue@^3.0.4": - version "3.0.4" - resolved "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-3.0.4.tgz" - integrity sha512-0dPtI0lwHcAgSiQFx8CzvqjdoXROcH+1LyqgROCpBgppommWpVhbQ0eubnKotFEXgpUCONVkeZJ6Ql8NbTEu+w== + version "3.0.5" + resolved "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-3.0.5.tgz" + integrity sha512-Mqutb8jbM+kIcywuPQCCaK5qQHTdaByoEO2J9LKFy3sqAdiBogNkrplqUK0HyyRFgCfbJUgjz3N85iCMcWH0JA== "@cspell/dynamic-import@8.19.4": version "8.19.4" @@ -1833,92 +1820,136 @@ dependencies: "@jridgewell/trace-mapping" "0.3.9" -"@csstools/cascade-layer-name-parser@^2.0.4": - version "2.0.4" - resolved "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-2.0.4.tgz" - integrity sha512-7DFHlPuIxviKYZrOiwVU/PiHLm3lLUR23OMuEEtfEOQTOp9hzQ2JjdY6X5H18RVuUPJqSCI+qNnD5iOLMVE0bA== +"@csstools/cascade-layer-name-parser@^2.0.5": + version "2.0.5" + resolved "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-2.0.5.tgz" + integrity sha512-p1ko5eHgV+MgXFVa4STPKpvPxr6ReS8oS2jzTukjR74i5zJNyWO1ZM1m8YKBXnzDKWfBN1ztLYlHxbVemDD88A== -"@csstools/color-helpers@^5.0.1": - version "5.0.1" - resolved "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.1.tgz" - integrity sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA== +"@csstools/color-helpers@^5.1.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz" + integrity sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA== -"@csstools/css-calc@^2.1.1": - version "2.1.1" - resolved "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.1.tgz" - integrity sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag== +"@csstools/css-calc@^2.1.4": + version "2.1.4" + resolved "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz" + integrity sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ== -"@csstools/css-color-parser@^3.0.7": - version "3.0.7" - resolved "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.7.tgz" - integrity sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA== +"@csstools/css-color-parser@^3.1.0": + version "3.1.0" + resolved "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz" + integrity sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA== dependencies: - "@csstools/color-helpers" "^5.0.1" - "@csstools/css-calc" "^2.1.1" + "@csstools/color-helpers" "^5.1.0" + "@csstools/css-calc" "^2.1.4" -"@csstools/css-parser-algorithms@^3.0.4": +"@csstools/css-parser-algorithms@^3.0.5": + version "3.0.5" + resolved "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz" + integrity sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ== + +"@csstools/css-tokenizer@^3.0.4": version "3.0.4" - resolved "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz" - integrity sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A== + resolved "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz" + integrity sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw== -"@csstools/css-tokenizer@^3.0.3": - version "3.0.3" - resolved "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz" - integrity sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw== +"@csstools/media-query-list-parser@^4.0.3": + version "4.0.3" + resolved "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.3.tgz" + integrity sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ== -"@csstools/media-query-list-parser@^4.0.2": - version "4.0.2" - resolved "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.2.tgz" - integrity sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A== +"@csstools/postcss-alpha-function@^1.0.1": + version "1.0.1" + resolved "https://registry.npmjs.org/@csstools/postcss-alpha-function/-/postcss-alpha-function-1.0.1.tgz" + integrity sha512-isfLLwksH3yHkFXfCI2Gcaqg7wGGHZZwunoJzEZk0yKYIokgre6hYVFibKL3SYAoR1kBXova8LB+JoO5vZzi9w== + dependencies: + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" + "@csstools/utilities" "^2.0.0" -"@csstools/postcss-cascade-layers@^5.0.1": - version "5.0.1" - resolved "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-5.0.1.tgz" - integrity sha512-XOfhI7GShVcKiKwmPAnWSqd2tBR0uxt+runAxttbSp/LY2U16yAVPmAf7e9q4JJ0d+xMNmpwNDLBXnmRCl3HMQ== +"@csstools/postcss-cascade-layers@^5.0.2": + version "5.0.2" + resolved "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-5.0.2.tgz" + integrity sha512-nWBE08nhO8uWl6kSAeCx4im7QfVko3zLrtgWZY4/bP87zrSPpSyN/3W3TDqz1jJuH+kbKOHXg5rJnK+ZVYcFFg== dependencies: "@csstools/selector-specificity" "^5.0.0" postcss-selector-parser "^7.0.0" -"@csstools/postcss-color-function@^4.0.7": - version "4.0.7" - resolved "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-4.0.7.tgz" - integrity sha512-aDHYmhNIHR6iLw4ElWhf+tRqqaXwKnMl0YsQ/X105Zc4dQwe6yJpMrTN6BwOoESrkDjOYMOfORviSSLeDTJkdQ== +"@csstools/postcss-color-function-display-p3-linear@^1.0.1": + version "1.0.1" + resolved "https://registry.npmjs.org/@csstools/postcss-color-function-display-p3-linear/-/postcss-color-function-display-p3-linear-1.0.1.tgz" + integrity sha512-E5qusdzhlmO1TztYzDIi8XPdPoYOjoTY6HBYBCYSj+Gn4gQRBlvjgPQXzfzuPQqt8EhkC/SzPKObg4Mbn8/xMg== dependencies: - "@csstools/css-color-parser" "^3.0.7" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/postcss-progressive-custom-properties" "^4.0.0" + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" -"@csstools/postcss-color-mix-function@^3.0.7": - version "3.0.7" - resolved "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.7.tgz" - integrity sha512-e68Nev4CxZYCLcrfWhHH4u/N1YocOfTmw67/kVX5Rb7rnguqqLyxPjhHWjSBX8o4bmyuukmNf3wrUSU3//kT7g== +"@csstools/postcss-color-function@^4.0.12": + version "4.0.12" + resolved "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-4.0.12.tgz" + integrity sha512-yx3cljQKRaSBc2hfh8rMZFZzChaFgwmO2JfFgFr1vMcF3C/uyy5I4RFIBOIWGq1D+XbKCG789CGkG6zzkLpagA== dependencies: - "@csstools/css-color-parser" "^3.0.7" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/postcss-progressive-custom-properties" "^4.0.0" + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" -"@csstools/postcss-content-alt-text@^2.0.4": - version "2.0.4" - resolved "https://registry.npmjs.org/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-2.0.4.tgz" - integrity sha512-YItlZUOuZJCBlRaCf8Aucc1lgN41qYGALMly0qQllrxYJhiyzlI6RxOTMUvtWk+KhS8GphMDsDhKQ7KTPfEMSw== +"@csstools/postcss-color-mix-function@^3.0.12": + version "3.0.12" + resolved "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.12.tgz" + integrity sha512-4STERZfCP5Jcs13P1U5pTvI9SkgLgfMUMhdXW8IlJWkzOOOqhZIjcNhWtNJZes2nkBDsIKJ0CJtFtuaZ00moag== dependencies: - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/postcss-progressive-custom-properties" "^4.0.0" + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" -"@csstools/postcss-exponential-functions@^2.0.6": - version "2.0.6" - resolved "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.6.tgz" - integrity sha512-IgJA5DQsQLu/upA3HcdvC6xEMR051ufebBTIXZ5E9/9iiaA7juXWz1ceYj814lnDYP/7eWjZnw0grRJlX4eI6g== +"@csstools/postcss-color-mix-variadic-function-arguments@^1.0.2": + version "1.0.2" + resolved "https://registry.npmjs.org/@csstools/postcss-color-mix-variadic-function-arguments/-/postcss-color-mix-variadic-function-arguments-1.0.2.tgz" + integrity sha512-rM67Gp9lRAkTo+X31DUqMEq+iK+EFqsidfecmhrteErxJZb6tUoJBVQca1Vn1GpDql1s1rD1pKcuYzMsg7Z1KQ== + dependencies: + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" + "@csstools/utilities" "^2.0.0" + +"@csstools/postcss-content-alt-text@^2.0.8": + version "2.0.8" + resolved "https://registry.npmjs.org/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-2.0.8.tgz" + integrity sha512-9SfEW9QCxEpTlNMnpSqFaHyzsiRpZ5J5+KqCu1u5/eEJAWsMhzT40qf0FIbeeglEvrGRMdDzAxMIz3wqoGSb+Q== + dependencies: + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" + "@csstools/utilities" "^2.0.0" + +"@csstools/postcss-contrast-color-function@^2.0.12": + version "2.0.12" + resolved "https://registry.npmjs.org/@csstools/postcss-contrast-color-function/-/postcss-contrast-color-function-2.0.12.tgz" + integrity sha512-YbwWckjK3qwKjeYz/CijgcS7WDUCtKTd8ShLztm3/i5dhh4NaqzsbYnhm4bjrpFpnLZ31jVcbK8YL77z3GBPzA== dependencies: - "@csstools/css-calc" "^2.1.1" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" + "@csstools/utilities" "^2.0.0" + +"@csstools/postcss-exponential-functions@^2.0.9": + version "2.0.9" + resolved "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.9.tgz" + integrity sha512-abg2W/PI3HXwS/CZshSa79kNWNZHdJPMBXeZNyPQFbbj8sKO3jXxOt/wF7juJVjyDTc6JrvaUZYFcSBZBhaxjw== + dependencies: + "@csstools/css-calc" "^2.1.4" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" "@csstools/postcss-font-format-keywords@^4.0.0": version "4.0.0" @@ -1928,67 +1959,67 @@ "@csstools/utilities" "^2.0.0" postcss-value-parser "^4.2.0" -"@csstools/postcss-gamut-mapping@^2.0.7": - version "2.0.7" - resolved "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.7.tgz" - integrity sha512-gzFEZPoOkY0HqGdyeBXR3JP218Owr683u7KOZazTK7tQZBE8s2yhg06W1tshOqk7R7SWvw9gkw2TQogKpIW8Xw== - dependencies: - "@csstools/css-color-parser" "^3.0.7" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - -"@csstools/postcss-gradients-interpolation-method@^5.0.7": - version "5.0.7" - resolved "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.7.tgz" - integrity sha512-WgEyBeg6glUeTdS2XT7qeTFBthTJuXlS9GFro/DVomj7W7WMTamAwpoP4oQCq/0Ki2gvfRYFi/uZtmRE14/DFA== - dependencies: - "@csstools/css-color-parser" "^3.0.7" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/postcss-progressive-custom-properties" "^4.0.0" +"@csstools/postcss-gamut-mapping@^2.0.11": + version "2.0.11" + resolved "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.11.tgz" + integrity sha512-fCpCUgZNE2piVJKC76zFsgVW1apF6dpYsqGyH8SIeCcM4pTEsRTWTLCaJIMKFEundsCKwY1rwfhtrio04RJ4Dw== + dependencies: + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + +"@csstools/postcss-gradients-interpolation-method@^5.0.12": + version "5.0.12" + resolved "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.12.tgz" + integrity sha512-jugzjwkUY0wtNrZlFeyXzimUL3hN4xMvoPnIXxoZqxDvjZRiSh+itgHcVUWzJ2VwD/VAMEgCLvtaJHX+4Vj3Ow== + dependencies: + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" -"@csstools/postcss-hwb-function@^4.0.7": - version "4.0.7" - resolved "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.7.tgz" - integrity sha512-LKYqjO+wGwDCfNIEllessCBWfR4MS/sS1WXO+j00KKyOjm7jDW2L6jzUmqASEiv/kkJO39GcoIOvTTfB3yeBUA== +"@csstools/postcss-hwb-function@^4.0.12": + version "4.0.12" + resolved "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.12.tgz" + integrity sha512-mL/+88Z53KrE4JdePYFJAQWFrcADEqsLprExCM04GDNgHIztwFzj0Mbhd/yxMBngq0NIlz58VVxjt5abNs1VhA== dependencies: - "@csstools/css-color-parser" "^3.0.7" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/postcss-progressive-custom-properties" "^4.0.0" + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" -"@csstools/postcss-ic-unit@^4.0.0": - version "4.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-4.0.0.tgz" - integrity sha512-9QT5TDGgx7wD3EEMN3BSUG6ckb6Eh5gSPT5kZoVtUuAonfPmLDJyPhqR4ntPpMYhUKAMVKAg3I/AgzqHMSeLhA== +"@csstools/postcss-ic-unit@^4.0.4": + version "4.0.4" + resolved "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-4.0.4.tgz" + integrity sha512-yQ4VmossuOAql65sCPppVO1yfb7hDscf4GseF0VCA/DTDaBc0Wtf8MTqVPfjGYlT5+2buokG0Gp7y0atYZpwjg== dependencies: - "@csstools/postcss-progressive-custom-properties" "^4.0.0" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" postcss-value-parser "^4.2.0" -"@csstools/postcss-initial@^2.0.0": - version "2.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-2.0.0.tgz" - integrity sha512-dv2lNUKR+JV+OOhZm9paWzYBXOCi+rJPqJ2cJuhh9xd8USVrd0cBEPczla81HNOyThMQWeCcdln3gZkQV2kYxA== +"@csstools/postcss-initial@^2.0.1": + version "2.0.1" + resolved "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-2.0.1.tgz" + integrity sha512-L1wLVMSAZ4wovznquK0xmC7QSctzO4D0Is590bxpGqhqjboLXYA16dWZpfwImkdOgACdQ9PqXsuRroW6qPlEsg== -"@csstools/postcss-is-pseudo-class@^5.0.1": - version "5.0.1" - resolved "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-5.0.1.tgz" - integrity sha512-JLp3POui4S1auhDR0n8wHd/zTOWmMsmK3nQd3hhL6FhWPaox5W7j1se6zXOG/aP07wV2ww0lxbKYGwbBszOtfQ== +"@csstools/postcss-is-pseudo-class@^5.0.3": + version "5.0.3" + resolved "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-5.0.3.tgz" + integrity sha512-jS/TY4SpG4gszAtIg7Qnf3AS2pjcUM5SzxpApOrlndMeGhIbaTzWBzzP/IApXoNWEW7OhcjkRT48jnAUIFXhAQ== dependencies: "@csstools/selector-specificity" "^5.0.0" postcss-selector-parser "^7.0.0" -"@csstools/postcss-light-dark-function@^2.0.7": - version "2.0.7" - resolved "https://registry.npmjs.org/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-2.0.7.tgz" - integrity sha512-ZZ0rwlanYKOHekyIPaU+sVm3BEHCe+Ha0/px+bmHe62n0Uc1lL34vbwrLYn6ote8PHlsqzKeTQdIejQCJ05tfw== +"@csstools/postcss-light-dark-function@^2.0.11": + version "2.0.11" + resolved "https://registry.npmjs.org/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-2.0.11.tgz" + integrity sha512-fNJcKXJdPM3Lyrbmgw2OBbaioU7yuKZtiXClf4sGdQttitijYlZMD5K7HrC/eF83VRWRrYq6OZ0Lx92leV2LFA== dependencies: - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/postcss-progressive-custom-properties" "^4.0.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" "@csstools/postcss-logical-float-and-clear@^3.0.0": @@ -2013,32 +2044,32 @@ dependencies: postcss-value-parser "^4.2.0" -"@csstools/postcss-logical-viewport-units@^3.0.3": - version "3.0.3" - resolved "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-3.0.3.tgz" - integrity sha512-OC1IlG/yoGJdi0Y+7duz/kU/beCwO+Gua01sD6GtOtLi7ByQUpcIqs7UE/xuRPay4cHgOMatWdnDdsIDjnWpPw== +"@csstools/postcss-logical-viewport-units@^3.0.4": + version "3.0.4" + resolved "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-3.0.4.tgz" + integrity sha512-q+eHV1haXA4w9xBwZLKjVKAWn3W2CMqmpNpZUk5kRprvSiBEGMgrNH3/sJZ8UA3JgyHaOt3jwT9uFa4wLX4EqQ== dependencies: - "@csstools/css-tokenizer" "^3.0.3" + "@csstools/css-tokenizer" "^3.0.4" "@csstools/utilities" "^2.0.0" -"@csstools/postcss-media-minmax@^2.0.6": - version "2.0.6" - resolved "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.6.tgz" - integrity sha512-J1+4Fr2W3pLZsfxkFazK+9kr96LhEYqoeBszLmFjb6AjYs+g9oDAw3J5oQignLKk3rC9XHW+ebPTZ9FaW5u5pg== +"@csstools/postcss-media-minmax@^2.0.9": + version "2.0.9" + resolved "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.9.tgz" + integrity sha512-af9Qw3uS3JhYLnCbqtZ9crTvvkR+0Se+bBqSr7ykAnl9yKhk6895z9rf+2F4dClIDJWxgn0iZZ1PSdkhrbs2ig== dependencies: - "@csstools/css-calc" "^2.1.1" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/media-query-list-parser" "^4.0.2" + "@csstools/css-calc" "^2.1.4" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/media-query-list-parser" "^4.0.3" -"@csstools/postcss-media-queries-aspect-ratio-number-values@^3.0.4": - version "3.0.4" - resolved "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-3.0.4.tgz" - integrity sha512-AnGjVslHMm5xw9keusQYvjVWvuS7KWK+OJagaG0+m9QnIjZsrysD2kJP/tr/UJIyYtMCtu8OkUd+Rajb4DqtIQ== +"@csstools/postcss-media-queries-aspect-ratio-number-values@^3.0.5": + version "3.0.5" + resolved "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-3.0.5.tgz" + integrity sha512-zhAe31xaaXOY2Px8IYfoVTB3wglbJUVigGphFLj6exb7cjZRH9A6adyE22XfFK3P2PzwRk0VDeTJmaxpluyrDg== dependencies: - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/media-query-list-parser" "^4.0.2" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/media-query-list-parser" "^4.0.3" "@csstools/postcss-nested-calc@^4.0.0": version "4.0.0" @@ -2048,49 +2079,62 @@ "@csstools/utilities" "^2.0.0" postcss-value-parser "^4.2.0" -"@csstools/postcss-normalize-display-values@^4.0.0": - version "4.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.0.tgz" - integrity sha512-HlEoG0IDRoHXzXnkV4in47dzsxdsjdz6+j7MLjaACABX2NfvjFS6XVAnpaDyGesz9gK2SC7MbNwdCHusObKJ9Q== +"@csstools/postcss-normalize-display-values@^4.0.1": + version "4.0.1" + resolved "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.1.tgz" + integrity sha512-TQUGBuRvxdc7TgNSTevYqrL8oItxiwPDixk20qCB5me/W8uF7BPbhRrAvFuhEoywQp/woRsUZ6SJ+sU5idZAIA== dependencies: postcss-value-parser "^4.2.0" -"@csstools/postcss-oklab-function@^4.0.7": - version "4.0.7" - resolved "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.7.tgz" - integrity sha512-I6WFQIbEKG2IO3vhaMGZDkucbCaUSXMxvHNzDdnfsTCF5tc0UlV3Oe2AhamatQoKFjBi75dSEMrgWq3+RegsOQ== +"@csstools/postcss-oklab-function@^4.0.12": + version "4.0.12" + resolved "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.12.tgz" + integrity sha512-HhlSmnE1NKBhXsTnNGjxvhryKtO7tJd1w42DKOGFD6jSHtYOrsJTQDKPMwvOfrzUAk8t7GcpIfRyM7ssqHpFjg== dependencies: - "@csstools/css-color-parser" "^3.0.7" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/postcss-progressive-custom-properties" "^4.0.0" + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" -"@csstools/postcss-progressive-custom-properties@^4.0.0": - version "4.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-4.0.0.tgz" - integrity sha512-XQPtROaQjomnvLUSy/bALTR5VCtTVUFwYs1SblvYgLSeTo2a/bMNwUwo2piXw5rTv/FEYiy5yPSXBqg9OKUx7Q== +"@csstools/postcss-position-area-property@^1.0.0": + version "1.0.0" + resolved "https://registry.npmjs.org/@csstools/postcss-position-area-property/-/postcss-position-area-property-1.0.0.tgz" + integrity sha512-fUP6KR8qV2NuUZV3Cw8itx0Ep90aRjAZxAEzC3vrl6yjFv+pFsQbR18UuQctEKmA72K9O27CoYiKEgXxkqjg8Q== + +"@csstools/postcss-progressive-custom-properties@^4.2.1": + version "4.2.1" + resolved "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-4.2.1.tgz" + integrity sha512-uPiiXf7IEKtUQXsxu6uWtOlRMXd2QWWy5fhxHDnPdXKCQckPP3E34ZgDoZ62r2iT+UOgWsSbM4NvHE5m3mAEdw== dependencies: postcss-value-parser "^4.2.0" -"@csstools/postcss-random-function@^1.0.2": - version "1.0.2" - resolved "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-1.0.2.tgz" - integrity sha512-vBCT6JvgdEkvRc91NFoNrLjgGtkLWt47GKT6E2UDn3nd8ZkMBiziQ1Md1OiKoSsgzxsSnGKG3RVdhlbdZEkHjA== +"@csstools/postcss-property-rule-prelude-list@^1.0.0": + version "1.0.0" + resolved "https://registry.npmjs.org/@csstools/postcss-property-rule-prelude-list/-/postcss-property-rule-prelude-list-1.0.0.tgz" + integrity sha512-IxuQjUXq19fobgmSSvUDO7fVwijDJaZMvWQugxfEUxmjBeDCVaDuMpsZ31MsTm5xbnhA+ElDi0+rQ7sQQGisFA== dependencies: - "@csstools/css-calc" "^2.1.1" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" -"@csstools/postcss-relative-color-syntax@^3.0.7": - version "3.0.7" - resolved "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.7.tgz" - integrity sha512-apbT31vsJVd18MabfPOnE977xgct5B1I+Jpf+Munw3n6kKb1MMuUmGGH+PT9Hm/fFs6fe61Q/EWnkrb4bNoNQw== +"@csstools/postcss-random-function@^2.0.1": + version "2.0.1" + resolved "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-2.0.1.tgz" + integrity sha512-q+FQaNiRBhnoSNo+GzqGOIBKoHQ43lYz0ICrV+UudfWnEF6ksS6DsBIJSISKQT2Bvu3g4k6r7t0zYrk5pDlo8w== dependencies: - "@csstools/css-color-parser" "^3.0.7" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/postcss-progressive-custom-properties" "^4.0.0" + "@csstools/css-calc" "^2.1.4" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + +"@csstools/postcss-relative-color-syntax@^3.0.12": + version "3.0.12" + resolved "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.12.tgz" + integrity sha512-0RLIeONxu/mtxRtf3o41Lq2ghLimw0w9ByLWnnEVuy89exmEEq8bynveBxNW3nyHqLAFEeNtVEmC1QK9MZ8Huw== + dependencies: + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" "@csstools/postcss-scope-pseudo-class@^4.0.1": @@ -2100,50 +2144,65 @@ dependencies: postcss-selector-parser "^7.0.0" -"@csstools/postcss-sign-functions@^1.1.1": - version "1.1.1" - resolved "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-1.1.1.tgz" - integrity sha512-MslYkZCeMQDxetNkfmmQYgKCy4c+w9pPDfgOBCJOo/RI1RveEUdZQYtOfrC6cIZB7sD7/PHr2VGOcMXlZawrnA== +"@csstools/postcss-sign-functions@^1.1.4": + version "1.1.4" + resolved "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-1.1.4.tgz" + integrity sha512-P97h1XqRPcfcJndFdG95Gv/6ZzxUBBISem0IDqPZ7WMvc/wlO+yU0c5D/OCpZ5TJoTt63Ok3knGk64N+o6L2Pg== dependencies: - "@csstools/css-calc" "^2.1.1" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" + "@csstools/css-calc" "^2.1.4" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" -"@csstools/postcss-stepped-value-functions@^4.0.6": - version "4.0.6" - resolved "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.6.tgz" - integrity sha512-/dwlO9w8vfKgiADxpxUbZOWlL5zKoRIsCymYoh1IPuBsXODKanKnfuZRr32DEqT0//3Av1VjfNZU9yhxtEfIeA== +"@csstools/postcss-stepped-value-functions@^4.0.9": + version "4.0.9" + resolved "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.9.tgz" + integrity sha512-h9btycWrsex4dNLeQfyU3y3w40LMQooJWFMm/SK9lrKguHDcFl4VMkncKKoXi2z5rM9YGWbUQABI8BT2UydIcA== dependencies: - "@csstools/css-calc" "^2.1.1" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" + "@csstools/css-calc" "^2.1.4" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" -"@csstools/postcss-text-decoration-shorthand@^4.0.1": - version "4.0.1" - resolved "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-4.0.1.tgz" - integrity sha512-xPZIikbx6jyzWvhms27uugIc0I4ykH4keRvoa3rxX5K7lEhkbd54rjj/dv60qOCTisoS+3bmwJTeyV1VNBrXaw== +"@csstools/postcss-syntax-descriptor-syntax-production@^1.0.1": + version "1.0.1" + resolved "https://registry.npmjs.org/@csstools/postcss-syntax-descriptor-syntax-production/-/postcss-syntax-descriptor-syntax-production-1.0.1.tgz" + integrity sha512-GneqQWefjM//f4hJ/Kbox0C6f2T7+pi4/fqTqOFGTL3EjnvOReTqO1qUQ30CaUjkwjYq9qZ41hzarrAxCc4gow== dependencies: - "@csstools/color-helpers" "^5.0.1" + "@csstools/css-tokenizer" "^3.0.4" + +"@csstools/postcss-system-ui-font-family@^1.0.0": + version "1.0.0" + resolved "https://registry.npmjs.org/@csstools/postcss-system-ui-font-family/-/postcss-system-ui-font-family-1.0.0.tgz" + integrity sha512-s3xdBvfWYfoPSBsikDXbuorcMG1nN1M6GdU0qBsGfcmNR0A/qhloQZpTxjA3Xsyrk1VJvwb2pOfiOT3at/DuIQ== + dependencies: + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + +"@csstools/postcss-text-decoration-shorthand@^4.0.3": + version "4.0.3" + resolved "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-4.0.3.tgz" + integrity sha512-KSkGgZfx0kQjRIYnpsD7X2Om9BUXX/Kii77VBifQW9Ih929hK0KNjVngHDH0bFB9GmfWcR9vJYJJRvw/NQjkrA== + dependencies: + "@csstools/color-helpers" "^5.1.0" postcss-value-parser "^4.2.0" -"@csstools/postcss-trigonometric-functions@^4.0.6": - version "4.0.6" - resolved "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.6.tgz" - integrity sha512-c4Y1D2Why/PeccaSouXnTt6WcNHJkoJRidV2VW9s5gJ97cNxnLgQ4Qj8qOqkIR9VmTQKJyNcbF4hy79ZQnWD7A== +"@csstools/postcss-trigonometric-functions@^4.0.9": + version "4.0.9" + resolved "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.9.tgz" + integrity sha512-Hnh5zJUdpNrJqK9v1/E3BbrQhaDTj5YiX7P61TOvUhoDHnUmsNNxcDAgkQ32RrcWx9GVUvfUNPcUkn8R3vIX6A== dependencies: - "@csstools/css-calc" "^2.1.1" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" + "@csstools/css-calc" "^2.1.4" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" "@csstools/postcss-unset-value@^4.0.0": version "4.0.0" resolved "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-4.0.0.tgz" integrity sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA== -"@csstools/selector-resolve-nested@^3.0.0": - version "3.0.0" - resolved "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.0.0.tgz" - integrity sha512-ZoK24Yku6VJU1gS79a5PFmC8yn3wIapiKmPgun0hZgEI5AOqgH2kiPRsPz1qkGv4HL+wuDLH83yQyk6inMYrJQ== +"@csstools/selector-resolve-nested@^3.1.0": + version "3.1.0" + resolved "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.1.0.tgz" + integrity sha512-mf1LEW0tJLKfWyvn5KdDrhpxHyuxpbNwTIwOYLIvsTffeyOf85j5oIzfG0yosxDgx/sswlqBnESYUcQH0vgZ0g== "@csstools/selector-specificity@^5.0.0": version "5.0.0" @@ -2157,7 +2216,7 @@ "@dabh/diagnostics@^2.0.8": version "2.0.8" - resolved "https://registry.yarnpkg.com/@dabh/diagnostics/-/diagnostics-2.0.8.tgz#ead97e72ca312cf0e6dd7af0d300b58993a31a5e" + resolved "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.8.tgz" integrity sha512-R4MSXTVnuMzGD7bzHdW2ZhhdPC/igELENcq5IjEverBvq5hn1SXCWcsi6eSsdWP0/Ur+SItRRjAktmdoX/8R/Q== dependencies: "@so-ric/colorspace" "^1.1.6" @@ -2169,25 +2228,29 @@ resolved "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz" integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== -"@docsearch/css@3.8.3": - version "3.8.3" - resolved "https://registry.npmjs.org/@docsearch/css/-/css-3.8.3.tgz" - integrity sha512-1nELpMV40JDLJ6rpVVFX48R1jsBFIQ6RnEQDsLFGmzOjPWTOMlZqUcXcvRx8VmYV/TqnS1l784Ofz+ZEb+wEOQ== +"@docsearch/core@4.6.3": + version "4.6.3" + resolved "https://registry.npmjs.org/@docsearch/core/-/core-4.6.3.tgz" + integrity sha512-rUOujwIpxJRgD7+kicVsI3D5sqBvdiRTquzWBpTEXZs8ZXfGbfzpus5HqumaNYTppN2HvH8E2yNuRwYdHJeOlA== + +"@docsearch/css@4.6.3": + version "4.6.3" + resolved "https://registry.npmjs.org/@docsearch/css/-/css-4.6.3.tgz" + integrity sha512-nlOwcXcsNAptQl4vlL4MA78qNJKO0Qlds5GuBjCoePgkebTXLSf8Qt1oyZ3YBshYupKXG9VRGEsk1zr23d+bzQ== -"@docsearch/react@^3.8.1": - version "3.8.3" - resolved "https://registry.npmjs.org/@docsearch/react/-/react-3.8.3.tgz" - integrity sha512-6UNrg88K7lJWmuS6zFPL/xgL+n326qXqZ7Ybyy4E8P/6Rcblk3GE8RXxeol4Pd5pFpKMhOhBhzABKKwHtbJCIg== +"@docsearch/react@^3.9.0 || ^4.3.2": + version "4.6.3" + resolved "https://registry.npmjs.org/@docsearch/react/-/react-4.6.3.tgz" + integrity sha512-Bg2wdDsoQVlNCcEKuEJAU04tvHCqgx8rIu+uIoM4pRtcx3TBKJuXutJik3LTA8LRc9YEyHkrYUrmcC0D7BYf+g== dependencies: - "@algolia/autocomplete-core" "1.17.9" - "@algolia/autocomplete-preset-algolia" "1.17.9" - "@docsearch/css" "3.8.3" - algoliasearch "^5.14.2" + "@algolia/autocomplete-core" "1.19.2" + "@docsearch/core" "4.6.3" + "@docsearch/css" "4.6.3" -"@docusaurus/babel@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/babel/-/babel-3.7.0.tgz" - integrity sha512-0H5uoJLm14S/oKV3Keihxvh8RV+vrid+6Gv+2qhuzbqHanawga8tYnsdpjEyt36ucJjqlby2/Md2ObWjA02UXQ== +"@docusaurus/babel@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/babel/-/babel-3.10.1.tgz" + integrity sha512-DZzFO1K3v/GoEt1fx1DiYHF4en+PuhtQf1AkQJa5zu3CoeKSpr5cpQRUlz3jr0m44wyzmSXu9bVpfir+N4+8bg== dependencies: "@babel/core" "^7.25.9" "@babel/generator" "^7.25.9" @@ -2197,44 +2260,42 @@ "@babel/preset-react" "^7.25.9" "@babel/preset-typescript" "^7.25.9" "@babel/runtime" "^7.25.9" - "@babel/runtime-corejs3" "^7.25.9" "@babel/traverse" "^7.25.9" - "@docusaurus/logger" "3.7.0" - "@docusaurus/utils" "3.7.0" + "@docusaurus/logger" "3.10.1" + "@docusaurus/utils" "3.10.1" babel-plugin-dynamic-import-node "^2.3.3" fs-extra "^11.1.1" tslib "^2.6.0" -"@docusaurus/bundler@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/bundler/-/bundler-3.7.0.tgz" - integrity sha512-CUUT9VlSGukrCU5ctZucykvgCISivct+cby28wJwCC/fkQFgAHRp/GKv2tx38ZmXb7nacrKzFTcp++f9txUYGg== +"@docusaurus/bundler@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/bundler/-/bundler-3.10.1.tgz" + integrity sha512-HIqQPvbqnnQRe4NsBd1774KRarjXqS6wHsWELtyuSs1gCfvixJO2jUGH/OEBtr1Gvzpw+ze5CjGMvSJ8UE1KUw== dependencies: "@babel/core" "^7.25.9" - "@docusaurus/babel" "3.7.0" - "@docusaurus/cssnano-preset" "3.7.0" - "@docusaurus/logger" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils" "3.7.0" + "@docusaurus/babel" "3.10.1" + "@docusaurus/cssnano-preset" "3.10.1" + "@docusaurus/logger" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils" "3.10.1" babel-loader "^9.2.1" - clean-css "^5.3.2" + clean-css "^5.3.3" copy-webpack-plugin "^11.0.0" - css-loader "^6.8.1" + css-loader "^6.11.0" css-minimizer-webpack-plugin "^5.0.1" cssnano "^6.1.2" file-loader "^6.2.0" html-minifier-terser "^7.2.0" - mini-css-extract-plugin "^2.9.1" + mini-css-extract-plugin "^2.9.2" null-loader "^4.0.1" - postcss "^8.4.26" - postcss-loader "^7.3.3" - postcss-preset-env "^10.1.0" - react-dev-utils "^12.0.1" + postcss "^8.5.4" + postcss-loader "^7.3.4" + postcss-preset-env "^10.2.1" terser-webpack-plugin "^5.3.9" tslib "^2.6.0" url-loader "^4.1.1" webpack "^5.95.0" - webpackbar "^6.0.1" + webpackbar "^7.0.0" "@docusaurus/core@2.0.0-beta.21": version "2.0.0-beta.21" @@ -2314,18 +2375,18 @@ webpack-merge "^5.8.0" webpackbar "^5.0.2" -"@docusaurus/core@3.7.0", "@docusaurus/core@^3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/core/-/core-3.7.0.tgz" - integrity sha512-b0fUmaL+JbzDIQaamzpAFpTviiaU4cX3Qz8cuo14+HGBCwa0evEK0UYCBFY3n4cLzL8Op1BueeroUD2LYAIHbQ== - dependencies: - "@docusaurus/babel" "3.7.0" - "@docusaurus/bundler" "3.7.0" - "@docusaurus/logger" "3.7.0" - "@docusaurus/mdx-loader" "3.7.0" - "@docusaurus/utils" "3.7.0" - "@docusaurus/utils-common" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" +"@docusaurus/core@3.10.1", "@docusaurus/core@^3.7.0": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/core/-/core-3.10.1.tgz" + integrity sha512-3pf2fXXw0eVk8WnC3T4LIigRDupcpvngpKo9Vy7mYyBhuddc0klDUuZAIfzMoK6z05pdlk6EFC/vBSX43+1O5w== + dependencies: + "@docusaurus/babel" "3.10.1" + "@docusaurus/bundler" "3.10.1" + "@docusaurus/logger" "3.10.1" + "@docusaurus/mdx-loader" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-common" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" boxen "^6.2.1" chalk "^4.1.2" chokidar "^3.5.3" @@ -2333,33 +2394,33 @@ combine-promises "^1.1.0" commander "^5.1.0" core-js "^3.31.1" - del "^6.1.1" detect-port "^1.5.1" escape-html "^1.0.3" eta "^2.2.0" eval "^0.1.8" + execa "^5.1.1" fs-extra "^11.1.1" html-tags "^3.3.1" html-webpack-plugin "^5.6.0" leven "^3.1.0" lodash "^4.17.21" + open "^8.4.0" p-map "^4.0.0" prompts "^2.4.2" - react-dev-utils "^12.0.1" react-helmet-async "npm:@slorber/react-helmet-async@1.3.0" react-loadable "npm:@docusaurus/react-loadable@6.0.0" - react-loadable-ssr-addon-v5-slorber "^1.0.1" + react-loadable-ssr-addon-v5-slorber "^1.0.3" react-router "^5.3.4" react-router-config "^5.1.1" react-router-dom "^5.3.4" semver "^7.5.4" - serve-handler "^6.1.6" - shelljs "^0.8.5" + serve-handler "^6.1.7" + tinypool "^1.0.2" tslib "^2.6.0" update-notifier "^6.0.2" webpack "^5.95.0" webpack-bundle-analyzer "^4.10.2" - webpack-dev-server "^4.15.2" + webpack-dev-server "^5.2.2" webpack-merge "^6.0.1" "@docusaurus/cssnano-preset@2.0.0-beta.21": @@ -2372,27 +2433,28 @@ postcss-sort-media-queries "^4.2.1" tslib "^2.4.0" -"@docusaurus/cssnano-preset@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-3.7.0.tgz" - integrity sha512-X9GYgruZBSOozg4w4dzv9uOz8oK/EpPVQXkp0MM6Tsgp/nRIU9hJzJ0Pxg1aRa3xCeEQTOimZHcocQFlLwYajQ== +"@docusaurus/cssnano-preset@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-3.10.1.tgz" + integrity sha512-eNfHGcTKCSq6xmcavAkX3RRclHaE2xRCMParlDXLdXVP01/a2e/jKXMj/0ULnLFQSNwwuI62L0Ge8J+nZsR7UQ== dependencies: cssnano-preset-advanced "^6.1.2" - postcss "^8.4.38" + postcss "^8.5.4" postcss-sort-media-queries "^5.2.0" tslib "^2.6.0" "@docusaurus/faster@^3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/faster/-/faster-3.7.0.tgz" - integrity sha512-d+7uyOEs3SBk38i2TL79N6mFaP7J4knc5lPX/W9od+jplXZhnDdl5ZMh2u2Lg7JxGV/l33Bd7h/xwv4mr21zag== + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/faster/-/faster-3.10.1.tgz" + integrity sha512-XTZhE5C1gZ/DaYYMlSk02dwP5vhpQON5QHVz1s3892mSESAywgWanURpXEDAvt4GvGuq7s+XP8rTWHZvfaJmdQ== dependencies: - "@docusaurus/types" "3.7.0" - "@rspack/core" "1.2.0-alpha.0" + "@docusaurus/types" "3.10.1" + "@rspack/core" "^1.7.10" "@swc/core" "^1.7.39" - "@swc/html" "^1.7.39" + "@swc/html" "^1.13.5" browserslist "^4.24.2" lightningcss "^1.27.0" + semver "^7.5.4" swc-loader "^0.2.6" tslib "^2.6.0" webpack "^5.95.0" @@ -2405,10 +2467,10 @@ chalk "^4.1.2" tslib "^2.4.0" -"@docusaurus/logger@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.7.0.tgz" - integrity sha512-z7g62X7bYxCYmeNNuO9jmzxLQG95q9QxINCwpboVcNff3SJiHJbGrarxxOVMVmAh1MsrSfxWkVGv4P41ktnFsA== +"@docusaurus/logger@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.10.1.tgz" + integrity sha512-oPjNFnfJsRCkePVjkGrxWGq4MvJKRQT0r9jOP0eRBTZ7Wr9FAbzdP/Gjs0I2Ss6YRkPoEgygKG112OkE6skvJw== dependencies: chalk "^4.1.2" tslib "^2.6.0" @@ -2435,21 +2497,21 @@ url-loader "^4.1.1" webpack "^5.72.1" -"@docusaurus/mdx-loader@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.7.0.tgz" - integrity sha512-OFBG6oMjZzc78/U3WNPSHs2W9ZJ723ewAcvVJaqS0VgyeUfmzUV8f1sv+iUHA0DtwiR5T5FjOxj6nzEE8LY6VA== +"@docusaurus/mdx-loader@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.10.1.tgz" + integrity sha512-GRmeb/wQ+iXRrFwcHBfgQhrJxGElgCsoTWZYDhccjsZVne1p8MK/EpQVIloXttz76TCe78kKD5AEG9n1xc1oxQ== dependencies: - "@docusaurus/logger" "3.7.0" - "@docusaurus/utils" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" + "@docusaurus/logger" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" "@mdx-js/mdx" "^3.0.0" "@slorber/remark-comment" "^1.0.0" escape-html "^1.0.3" estree-util-value-to-estree "^3.0.1" file-loader "^6.2.0" fs-extra "^11.1.1" - image-size "^1.0.2" + image-size "^2.0.2" mdast-util-mdx "^3.0.0" mdast-util-to-string "^4.0.0" rehype-raw "^7.0.0" @@ -2465,186 +2527,200 @@ vfile "^6.0.1" webpack "^5.88.1" -"@docusaurus/module-type-aliases@3.7.0", "@docusaurus/module-type-aliases@^3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.7.0.tgz" - integrity sha512-g7WdPqDNaqA60CmBrr0cORTrsOit77hbsTj7xE2l71YhBn79sxdm7WMK7wfhcaafkbpIh7jv5ef5TOpf1Xv9Lg== +"@docusaurus/module-type-aliases@3.10.1", "@docusaurus/module-type-aliases@^3.7.0": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.10.1.tgz" + integrity sha512-YoOZKUdGlp8xSYhuAkGdSo5Ydkbq4V4eK3sD8v0a2hloxCWdQbNBhkc+Ko9QyjpESc0BYcIGM5iHVAy5hdFV6w== dependencies: - "@docusaurus/types" "3.7.0" + "@docusaurus/types" "3.10.1" "@types/history" "^4.7.11" "@types/react" "*" "@types/react-router-config" "*" "@types/react-router-dom" "*" - react-helmet-async "npm:@slorber/react-helmet-async@*" + react-helmet-async "npm:@slorber/react-helmet-async@1.3.0" react-loadable "npm:@docusaurus/react-loadable@6.0.0" "@docusaurus/plugin-client-redirects@^3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/plugin-client-redirects/-/plugin-client-redirects-3.7.0.tgz" - integrity sha512-6B4XAtE5ZVKOyhPgpgMkb7LwCkN+Hgd4vOnlbwR8nCdTQhLjz8MHbGlwwvZ/cay2SPNRX5KssqKAlcHVZP2m8g== - dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/logger" "3.7.0" - "@docusaurus/utils" "3.7.0" - "@docusaurus/utils-common" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/plugin-client-redirects/-/plugin-client-redirects-3.10.1.tgz" + integrity sha512-LHgd+YDvkhfOHMAE6XtUng3DQNzVM765RqVRrMJgHtzAvfopQhY6ieprqjxDVBdv21cLma6I0jHr+YCZH8fL9A== + dependencies: + "@docusaurus/core" "3.10.1" + "@docusaurus/logger" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-common" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" eta "^2.2.0" fs-extra "^11.1.1" lodash "^4.17.21" tslib "^2.6.0" -"@docusaurus/plugin-content-blog@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.7.0.tgz" - integrity sha512-EFLgEz6tGHYWdPU0rK8tSscZwx+AsyuBW/r+tNig2kbccHYGUJmZtYN38GjAa3Fda4NU+6wqUO5kTXQSRBQD3g== - dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/logger" "3.7.0" - "@docusaurus/mdx-loader" "3.7.0" - "@docusaurus/theme-common" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils" "3.7.0" - "@docusaurus/utils-common" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" +"@docusaurus/plugin-content-blog@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.10.1.tgz" + integrity sha512-mmkgE6Q2+K74tnkou7tXlpDLvoCU/qkSa2GSQ3XUiHWvcebCoDQzS670RR3tO8PmaWlIyWWISYWzZLuMfxunRA== + dependencies: + "@docusaurus/core" "3.10.1" + "@docusaurus/logger" "3.10.1" + "@docusaurus/mdx-loader" "3.10.1" + "@docusaurus/theme-common" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-common" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" cheerio "1.0.0-rc.12" + combine-promises "^1.1.0" feed "^4.2.2" fs-extra "^11.1.1" lodash "^4.17.21" - reading-time "^1.5.0" + schema-dts "^1.1.2" srcset "^4.0.0" tslib "^2.6.0" unist-util-visit "^5.0.0" utility-types "^3.10.0" webpack "^5.88.1" -"@docusaurus/plugin-content-docs@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.7.0.tgz" - integrity sha512-GXg5V7kC9FZE4FkUZA8oo/NrlRb06UwuICzI6tcbzj0+TVgjq/mpUXXzSgKzMS82YByi4dY2Q808njcBCyy6tQ== - dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/logger" "3.7.0" - "@docusaurus/mdx-loader" "3.7.0" - "@docusaurus/module-type-aliases" "3.7.0" - "@docusaurus/theme-common" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils" "3.7.0" - "@docusaurus/utils-common" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" +"@docusaurus/plugin-content-docs@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.10.1.tgz" + integrity sha512-2jRVrtzjf8LClGTHQlwlwuD3wQXRx3WEoF7XUarJ8Ou+0onV+SLtejsyfY9JLpfUh9hPhXM4pbBGkyAY4Bi3HQ== + dependencies: + "@docusaurus/core" "3.10.1" + "@docusaurus/logger" "3.10.1" + "@docusaurus/mdx-loader" "3.10.1" + "@docusaurus/module-type-aliases" "3.10.1" + "@docusaurus/theme-common" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-common" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" "@types/react-router-config" "^5.0.7" combine-promises "^1.1.0" fs-extra "^11.1.1" js-yaml "^4.1.0" lodash "^4.17.21" + schema-dts "^1.1.2" tslib "^2.6.0" utility-types "^3.10.0" webpack "^5.88.1" -"@docusaurus/plugin-content-pages@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.7.0.tgz" - integrity sha512-YJSU3tjIJf032/Aeao8SZjFOrXJbz/FACMveSMjLyMH4itQyZ2XgUIzt4y+1ISvvk5zrW4DABVT2awTCqBkx0Q== - dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/mdx-loader" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" +"@docusaurus/plugin-content-pages@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.10.1.tgz" + integrity sha512-huJpaRPMl42nsFwuCXvV8bVDj2MazuwRJIUylI/RSlmZeJssVoZXeCjVf1y+1Drtpa9SKcdGn8yoJ76IRJijtw== + dependencies: + "@docusaurus/core" "3.10.1" + "@docusaurus/mdx-loader" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" fs-extra "^11.1.1" tslib "^2.6.0" webpack "^5.88.1" -"@docusaurus/plugin-debug@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-3.7.0.tgz" - integrity sha512-Qgg+IjG/z4svtbCNyTocjIwvNTNEwgRjSXXSJkKVG0oWoH0eX/HAPiu+TS1HBwRPQV+tTYPWLrUypYFepfujZA== +"@docusaurus/plugin-css-cascade-layers@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/plugin-css-cascade-layers/-/plugin-css-cascade-layers-3.10.1.tgz" + integrity sha512-r//fn+MNHkE1wCof8T29VAQezt1enGCpsFxoziBbvLgBM4JfXN2P3rxrBaavHmvLvm7lYkpJeitcDthwnmWCTw== dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils" "3.7.0" + "@docusaurus/core" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" + tslib "^2.6.0" + +"@docusaurus/plugin-debug@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-3.10.1.tgz" + integrity sha512-9KqOpKNfAyqGZykRb9LhIT/vyRF6sm/ykhjj/39JvaJahDS+jZJE0Z1Wfz9q3DUNDTMNN0Q7u/kk4rKKU+IJuA== + dependencies: + "@docusaurus/core" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils" "3.10.1" fs-extra "^11.1.1" - react-json-view-lite "^1.2.0" + react-json-view-lite "^2.3.0" tslib "^2.6.0" -"@docusaurus/plugin-google-analytics@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.7.0.tgz" - integrity sha512-otIqiRV/jka6Snjf+AqB360XCeSv7lQC+DKYW+EUZf6XbuE8utz5PeUQ8VuOcD8Bk5zvT1MC4JKcd5zPfDuMWA== +"@docusaurus/plugin-google-analytics@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.10.1.tgz" + integrity sha512-8o0P1KtmgdYQHH+oInitPpRWI0Of5XednAX4+DMhQNSmGSRNrsEEHg1ebv35m9AgRClfAytCJ5jA9KvcASTyuA== dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" + "@docusaurus/core" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" tslib "^2.6.0" -"@docusaurus/plugin-google-gtag@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.7.0.tgz" - integrity sha512-M3vrMct1tY65ModbyeDaMoA+fNJTSPe5qmchhAbtqhDD/iALri0g9LrEpIOwNaoLmm6lO88sfBUADQrSRSGSWA== +"@docusaurus/plugin-google-gtag@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.10.1.tgz" + integrity sha512-pu3xIUo5o/zCMLfUY9BO5KOwSH0zIsAGyFRPvXHayFSA5XIhCU/SFuB0g0ZNjFn9niZLCaNvoeAuOGFJZq0fdw== dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" - "@types/gtag.js" "^0.0.12" + "@docusaurus/core" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" + "@types/gtag.js" "^0.0.20" tslib "^2.6.0" -"@docusaurus/plugin-google-tag-manager@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.7.0.tgz" - integrity sha512-X8U78nb8eiMiPNg3jb9zDIVuuo/rE1LjGDGu+5m5CX4UBZzjMy+klOY2fNya6x8ACyE/L3K2erO1ErheP55W/w== +"@docusaurus/plugin-google-tag-manager@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.10.1.tgz" + integrity sha512-f6fyGHiCm7kJHBtAisGQS5oNBnpnMTYQZxDXeVrnw/3zWU+LMA22pr6UHGYkBKDbN+qPC5QHG3NuOfzQLq3+Lw== dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" + "@docusaurus/core" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" tslib "^2.6.0" -"@docusaurus/plugin-sitemap@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.7.0.tgz" - integrity sha512-bTRT9YLZ/8I/wYWKMQke18+PF9MV8Qub34Sku6aw/vlZ/U+kuEuRpQ8bTcNOjaTSfYsWkK4tTwDMHK2p5S86cA== - dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/logger" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils" "3.7.0" - "@docusaurus/utils-common" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" +"@docusaurus/plugin-sitemap@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.10.1.tgz" + integrity sha512-C26MbmmqgdjkDq1htaZ3aD7LzEDKFWXfpyQpt0EOUThuq5nV77zDaedV20yHcVo9p+3ey9aZ4pbHA0D3QcZTzg== + dependencies: + "@docusaurus/core" "3.10.1" + "@docusaurus/logger" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-common" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" fs-extra "^11.1.1" sitemap "^7.1.1" tslib "^2.6.0" -"@docusaurus/plugin-svgr@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/plugin-svgr/-/plugin-svgr-3.7.0.tgz" - integrity sha512-HByXIZTbc4GV5VAUkZ2DXtXv1Qdlnpk3IpuImwSnEzCDBkUMYcec5282hPjn6skZqB25M1TYCmWS91UbhBGxQg== +"@docusaurus/plugin-svgr@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/plugin-svgr/-/plugin-svgr-3.10.1.tgz" + integrity sha512-6SFxsmjWFkVLDmBUvFK6i72QjUwqyQFe4Ovz+SUJophJjOyVG3ZZG5IQpBC/kX/Gfv1yWeU9nWauH6F6Q7QX/Q== dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" + "@docusaurus/core" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" "@svgr/core" "8.1.0" "@svgr/webpack" "^8.1.0" tslib "^2.6.0" webpack "^5.88.1" "@docusaurus/preset-classic@^3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-3.7.0.tgz" - integrity sha512-nPHj8AxDLAaQXs+O6+BwILFuhiWbjfQWrdw2tifOClQoNfuXDjfjogee6zfx6NGHWqshR23LrcN115DmkHC91Q== - dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/plugin-content-blog" "3.7.0" - "@docusaurus/plugin-content-docs" "3.7.0" - "@docusaurus/plugin-content-pages" "3.7.0" - "@docusaurus/plugin-debug" "3.7.0" - "@docusaurus/plugin-google-analytics" "3.7.0" - "@docusaurus/plugin-google-gtag" "3.7.0" - "@docusaurus/plugin-google-tag-manager" "3.7.0" - "@docusaurus/plugin-sitemap" "3.7.0" - "@docusaurus/plugin-svgr" "3.7.0" - "@docusaurus/theme-classic" "3.7.0" - "@docusaurus/theme-common" "3.7.0" - "@docusaurus/theme-search-algolia" "3.7.0" - "@docusaurus/types" "3.7.0" + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-3.10.1.tgz" + integrity sha512-YO/FL8v1zmbxoTso6mjMz/RDjhaTJxb1UpFFTDdY5847LLDCeyYiYlrhyTbgN1RIN3xnkLKZ9Lj1x8hUzI4JOg== + dependencies: + "@docusaurus/core" "3.10.1" + "@docusaurus/plugin-content-blog" "3.10.1" + "@docusaurus/plugin-content-docs" "3.10.1" + "@docusaurus/plugin-content-pages" "3.10.1" + "@docusaurus/plugin-css-cascade-layers" "3.10.1" + "@docusaurus/plugin-debug" "3.10.1" + "@docusaurus/plugin-google-analytics" "3.10.1" + "@docusaurus/plugin-google-gtag" "3.10.1" + "@docusaurus/plugin-google-tag-manager" "3.10.1" + "@docusaurus/plugin-sitemap" "3.10.1" + "@docusaurus/plugin-svgr" "3.10.1" + "@docusaurus/theme-classic" "3.10.1" + "@docusaurus/theme-common" "3.10.1" + "@docusaurus/theme-search-algolia" "3.10.1" + "@docusaurus/types" "3.10.1" "@docusaurus/react-loadable@5.5.2": version "5.5.2" @@ -2654,31 +2730,31 @@ "@types/react" "*" prop-types "^15.6.2" -"@docusaurus/theme-classic@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-3.7.0.tgz" - integrity sha512-MnLxG39WcvLCl4eUzHr0gNcpHQfWoGqzADCly54aqCofQX6UozOS9Th4RK3ARbM9m7zIRv3qbhggI53dQtx/hQ== - dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/logger" "3.7.0" - "@docusaurus/mdx-loader" "3.7.0" - "@docusaurus/module-type-aliases" "3.7.0" - "@docusaurus/plugin-content-blog" "3.7.0" - "@docusaurus/plugin-content-docs" "3.7.0" - "@docusaurus/plugin-content-pages" "3.7.0" - "@docusaurus/theme-common" "3.7.0" - "@docusaurus/theme-translations" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils" "3.7.0" - "@docusaurus/utils-common" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" +"@docusaurus/theme-classic@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-3.10.1.tgz" + integrity sha512-VU1RK0qb2pab0si4r7HFK37cYco8VzqLj3u1PspVipSr/z/GPVKHO4/HXbnePqHoWDk8urjyGSeatH0NIMBM1A== + dependencies: + "@docusaurus/core" "3.10.1" + "@docusaurus/logger" "3.10.1" + "@docusaurus/mdx-loader" "3.10.1" + "@docusaurus/module-type-aliases" "3.10.1" + "@docusaurus/plugin-content-blog" "3.10.1" + "@docusaurus/plugin-content-docs" "3.10.1" + "@docusaurus/plugin-content-pages" "3.10.1" + "@docusaurus/theme-common" "3.10.1" + "@docusaurus/theme-translations" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-common" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" "@mdx-js/react" "^3.0.0" clsx "^2.0.0" copy-text-to-clipboard "^3.2.0" infima "0.2.0-alpha.45" lodash "^4.17.21" nprogress "^0.2.0" - postcss "^8.4.26" + postcss "^8.5.4" prism-react-renderer "^2.3.0" prismjs "^1.29.0" react-router-dom "^5.3.4" @@ -2686,15 +2762,15 @@ tslib "^2.6.0" utility-types "^3.10.0" -"@docusaurus/theme-common@3.7.0", "@docusaurus/theme-common@^3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.7.0.tgz" - integrity sha512-8eJ5X0y+gWDsURZnBfH0WabdNm8XMCXHv8ENy/3Z/oQKwaB/EHt5lP9VsTDTf36lKEp0V6DjzjFyFIB+CetL0A== +"@docusaurus/theme-common@3.10.1", "@docusaurus/theme-common@^3.7.0": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.10.1.tgz" + integrity sha512-0YtmIeoNo1fIw65LO8+/1dPgmDV86UmhMkow37gzjytuiCSQm9xob6PJy0L4kuQEMTLfUOGvkXvZr7GPrHquMA== dependencies: - "@docusaurus/mdx-loader" "3.7.0" - "@docusaurus/module-type-aliases" "3.7.0" - "@docusaurus/utils" "3.7.0" - "@docusaurus/utils-common" "3.7.0" + "@docusaurus/mdx-loader" "3.10.1" + "@docusaurus/module-type-aliases" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-common" "3.10.1" "@types/history" "^4.7.11" "@types/react" "*" "@types/react-router-config" "*" @@ -2705,33 +2781,34 @@ utility-types "^3.10.0" "@docusaurus/theme-mermaid@^3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/theme-mermaid/-/theme-mermaid-3.7.0.tgz" - integrity sha512-7kNDvL7hm+tshjxSxIqYMtsLUPsEBYnkevej/ext6ru9xyLgCed+zkvTfGzTWNeq8rJIEe2YSS8/OV5gCVaPCw== - dependencies: - "@docusaurus/core" "3.7.0" - "@docusaurus/module-type-aliases" "3.7.0" - "@docusaurus/theme-common" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" - mermaid ">=10.4" + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/theme-mermaid/-/theme-mermaid-3.10.1.tgz" + integrity sha512-2gxpmln8Pc4EN1oWzshQEx2HTs67jk14v7MmgqGs8ZU7Nm8oihg+fTouof2u4vN8DtB3Fln4cDJu4UprSX1S3Q== + dependencies: + "@docusaurus/core" "3.10.1" + "@docusaurus/module-type-aliases" "3.10.1" + "@docusaurus/theme-common" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" + mermaid ">=11.6.0" tslib "^2.6.0" -"@docusaurus/theme-search-algolia@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.7.0.tgz" - integrity sha512-Al/j5OdzwRU1m3falm+sYy9AaB93S1XF1Lgk9Yc6amp80dNxJVplQdQTR4cYdzkGtuQqbzUA8+kaoYYO0RbK6g== - dependencies: - "@docsearch/react" "^3.8.1" - "@docusaurus/core" "3.7.0" - "@docusaurus/logger" "3.7.0" - "@docusaurus/plugin-content-docs" "3.7.0" - "@docusaurus/theme-common" "3.7.0" - "@docusaurus/theme-translations" "3.7.0" - "@docusaurus/utils" "3.7.0" - "@docusaurus/utils-validation" "3.7.0" - algoliasearch "^5.17.1" - algoliasearch-helper "^3.22.6" +"@docusaurus/theme-search-algolia@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.10.1.tgz" + integrity sha512-OTaARARVZj2GvkJQjB+1jOIxntRaXea+G+fMsNqrZBAU1O1vJKDW22R7kECOHW27oJCLFN9HKaZeRrfAUyviug== + dependencies: + "@algolia/autocomplete-core" "^1.19.2" + "@docsearch/react" "^3.9.0 || ^4.3.2" + "@docusaurus/core" "3.10.1" + "@docusaurus/logger" "3.10.1" + "@docusaurus/plugin-content-docs" "3.10.1" + "@docusaurus/theme-common" "3.10.1" + "@docusaurus/theme-translations" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-validation" "3.10.1" + algoliasearch "^5.37.0" + algoliasearch-helper "^3.26.0" clsx "^2.0.0" eta "^2.2.0" fs-extra "^11.1.1" @@ -2739,10 +2816,10 @@ tslib "^2.6.0" utility-types "^3.10.0" -"@docusaurus/theme-translations@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-3.7.0.tgz" - integrity sha512-Ewq3bEraWDmienM6eaNK7fx+/lHMtGDHQyd1O+4+3EsDxxUmrzPkV7Ct3nBWTuE0MsoZr3yNwQVKjllzCMuU3g== +"@docusaurus/theme-translations@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-3.10.1.tgz" + integrity sha512-cLMyaKivjBVWKMJuWqyFVVgtqe8DPJNPkog0bn8W1MDVAKcPdxRFycBfC1We1RaNp7Rdk513bmtW78RR6OBxBw== dependencies: fs-extra "^11.1.1" tslib "^2.6.0" @@ -2765,13 +2842,14 @@ webpack "^5.72.1" webpack-merge "^5.8.0" -"@docusaurus/types@3.7.0", "@docusaurus/types@^3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/types/-/types-3.7.0.tgz" - integrity sha512-kOmZg5RRqJfH31m+6ZpnwVbkqMJrPOG5t0IOl4i/+3ruXyNfWzZ0lVtVrD0u4ONc/0NOsS9sWYaxxWNkH1LdLQ== +"@docusaurus/types@3.10.1", "@docusaurus/types@^3.7.0": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/types/-/types-3.10.1.tgz" + integrity sha512-XYMK8k1szDCFMw2V+Xyen0g7Kee1sP3dtFnl7vkGkZOkeAJ/oPDQPL8iz4HBKOo/cwU8QeV6onVjMqtP+tFzsw== dependencies: "@mdx-js/mdx" "^3.0.0" "@types/history" "^4.7.11" + "@types/mdast" "^4.0.2" "@types/react" "*" commander "^5.1.0" joi "^17.9.2" @@ -2787,12 +2865,12 @@ dependencies: tslib "^2.4.0" -"@docusaurus/utils-common@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.7.0.tgz" - integrity sha512-IZeyIfCfXy0Mevj6bWNg7DG7B8G+S6o6JVpddikZtWyxJguiQ7JYr0SIZ0qWd8pGNuMyVwriWmbWqMnK7Y5PwA== +"@docusaurus/utils-common@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.10.1.tgz" + integrity sha512-5mFSgEADtnFxFH7RLw02QA5MpU5JVUCj0MPeIvi/aF4Fi45tQRIuTwXoXDqJ+1VfQJuYJGz3SI63wmGz4HvXzA== dependencies: - "@docusaurus/types" "3.7.0" + "@docusaurus/types" "3.10.1" tslib "^2.6.0" "@docusaurus/utils-validation@2.0.0-beta.21": @@ -2806,14 +2884,14 @@ js-yaml "^4.1.0" tslib "^2.4.0" -"@docusaurus/utils-validation@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.7.0.tgz" - integrity sha512-w8eiKk8mRdN+bNfeZqC4nyFoxNyI1/VExMKAzD9tqpJfLLbsa46Wfn5wcKH761g9WkKh36RtFV49iL9lh1DYBA== +"@docusaurus/utils-validation@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.10.1.tgz" + integrity sha512-cRv1X69jwaWv47waglllgZVWzeBFLhl53XT/XED/83BerVBTC5FTP8WTcVl8Z6sZOegDSwitu/wpCSPCDOT6lg== dependencies: - "@docusaurus/logger" "3.7.0" - "@docusaurus/utils" "3.7.0" - "@docusaurus/utils-common" "3.7.0" + "@docusaurus/logger" "3.10.1" + "@docusaurus/utils" "3.10.1" + "@docusaurus/utils-common" "3.10.1" fs-extra "^11.2.0" joi "^17.9.2" js-yaml "^4.1.0" @@ -2841,15 +2919,16 @@ url-loader "^4.1.1" webpack "^5.72.1" -"@docusaurus/utils@3.7.0": - version "3.7.0" - resolved "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.7.0.tgz" - integrity sha512-e7zcB6TPnVzyUaHMJyLSArKa2AG3h9+4CfvKXKKWNx6hRs+p0a+u7HHTJBgo6KW2m+vqDnuIHK4X+bhmoghAFA== +"@docusaurus/utils@3.10.1": + version "3.10.1" + resolved "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.10.1.tgz" + integrity sha512-3ojeJry9xBYdJO6qoyyzqeJFSJBVx2mXhyDzSdjwL2+URFQMf+h25gG38iswGImicK0ELjTd1EL2xzk8hf3QPw== dependencies: - "@docusaurus/logger" "3.7.0" - "@docusaurus/types" "3.7.0" - "@docusaurus/utils-common" "3.7.0" + "@docusaurus/logger" "3.10.1" + "@docusaurus/types" "3.10.1" + "@docusaurus/utils-common" "3.10.1" escape-string-regexp "^4.0.0" + execa "^5.1.1" file-loader "^6.2.0" fs-extra "^11.1.1" github-slugger "^1.5.0" @@ -2859,24 +2938,46 @@ js-yaml "^4.1.0" lodash "^4.17.21" micromatch "^4.0.5" + p-queue "^6.6.2" prompts "^2.4.2" resolve-pathname "^3.0.0" - shelljs "^0.8.5" tslib "^2.6.0" url-loader "^4.1.1" utility-types "^3.10.0" webpack "^5.88.1" -"@emotion/babel-plugin@^11.12.0": - version "11.12.0" - resolved "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.12.0.tgz" - integrity sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw== +"@emnapi/core@^1.5.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-1.10.0.tgz#380ccc8f2412ea22d1d972df7f8ee23a3b9c7467" + integrity sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw== + dependencies: + "@emnapi/wasi-threads" "1.2.1" + tslib "^2.4.0" + +"@emnapi/runtime@^1.5.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.10.0.tgz#4b260c0d3534204e98c6110b8db1a987d26ec87c" + integrity sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA== + dependencies: + tslib "^2.4.0" + +"@emnapi/wasi-threads@1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz#28fed21a1ba1ce797c44a070abc94d42f3ae8548" + integrity sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w== + dependencies: + tslib "^2.4.0" + +"@emotion/babel-plugin@^11.13.5": + version "11.13.5" + resolved "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz" + integrity sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ== dependencies: "@babel/helper-module-imports" "^7.16.7" "@babel/runtime" "^7.18.3" "@emotion/hash" "^0.9.2" "@emotion/memoize" "^0.9.0" - "@emotion/serialize" "^1.2.0" + "@emotion/serialize" "^1.3.3" babel-plugin-macros "^3.1.0" convert-source-map "^1.5.0" escape-string-regexp "^4.0.0" @@ -2884,14 +2985,14 @@ source-map "^0.5.7" stylis "4.2.0" -"@emotion/cache@^11.13.0", "@emotion/cache@^11.4.0": - version "11.13.1" - resolved "https://registry.npmjs.org/@emotion/cache/-/cache-11.13.1.tgz" - integrity sha512-iqouYkuEblRcXmylXIwwOodiEK5Ifl7JcX7o6V4jI3iW4mLXX3dmt5xwBtIkJiQEXFAI+pC8X0i67yiPkH9Ucw== +"@emotion/cache@^11.14.0", "@emotion/cache@^11.4.0": + version "11.14.0" + resolved "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz" + integrity sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA== dependencies: "@emotion/memoize" "^0.9.0" "@emotion/sheet" "^1.4.0" - "@emotion/utils" "^1.4.0" + "@emotion/utils" "^1.4.2" "@emotion/weak-memoize" "^0.4.0" stylis "4.2.0" @@ -2906,28 +3007,28 @@ integrity sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ== "@emotion/react@^11.8.1": - version "11.13.3" - resolved "https://registry.npmjs.org/@emotion/react/-/react-11.13.3.tgz" - integrity sha512-lIsdU6JNrmYfJ5EbUCf4xW1ovy5wKQ2CkPRM4xogziOxH1nXxBSjpC9YqbFAP7circxMfYp+6x676BqWcEiixg== + version "11.14.0" + resolved "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz" + integrity sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA== dependencies: "@babel/runtime" "^7.18.3" - "@emotion/babel-plugin" "^11.12.0" - "@emotion/cache" "^11.13.0" - "@emotion/serialize" "^1.3.1" - "@emotion/use-insertion-effect-with-fallbacks" "^1.1.0" - "@emotion/utils" "^1.4.0" + "@emotion/babel-plugin" "^11.13.5" + "@emotion/cache" "^11.14.0" + "@emotion/serialize" "^1.3.3" + "@emotion/use-insertion-effect-with-fallbacks" "^1.2.0" + "@emotion/utils" "^1.4.2" "@emotion/weak-memoize" "^0.4.0" hoist-non-react-statics "^3.3.1" -"@emotion/serialize@^1.2.0", "@emotion/serialize@^1.3.1": - version "1.3.2" - resolved "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.2.tgz" - integrity sha512-grVnMvVPK9yUVE6rkKfAJlYZgo0cu3l9iMC77V7DW6E1DUIrU68pSEXRmFZFOFB1QFo57TncmOcvcbMDWsL4yA== +"@emotion/serialize@^1.3.3": + version "1.3.3" + resolved "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz" + integrity sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA== dependencies: "@emotion/hash" "^0.9.2" "@emotion/memoize" "^0.9.0" "@emotion/unitless" "^0.10.0" - "@emotion/utils" "^1.4.1" + "@emotion/utils" "^1.4.2" csstype "^3.0.2" "@emotion/sheet@^1.4.0": @@ -2940,40 +3041,40 @@ resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz" integrity sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg== -"@emotion/use-insertion-effect-with-fallbacks@^1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.1.0.tgz" - integrity sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw== +"@emotion/use-insertion-effect-with-fallbacks@^1.2.0": + version "1.2.0" + resolved "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz" + integrity sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg== -"@emotion/utils@^1.4.0", "@emotion/utils@^1.4.1": - version "1.4.1" - resolved "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.1.tgz" - integrity sha512-BymCXzCG3r72VKJxaYVwOXATqXIZ85cuvg0YOUDxMGNrKc1DJRZk8MgV5wyXRyEayIMd4FuXJIUgTBXvDNW5cA== +"@emotion/utils@^1.4.2": + version "1.4.2" + resolved "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz" + integrity sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA== "@emotion/weak-memoize@^0.4.0": version "0.4.0" resolved "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz" integrity sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg== -"@floating-ui/core@^1.6.0": - version "1.6.8" - resolved "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.8.tgz" - integrity sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA== +"@floating-ui/core@^1.7.5": + version "1.7.5" + resolved "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.5.tgz" + integrity sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ== dependencies: - "@floating-ui/utils" "^0.2.8" + "@floating-ui/utils" "^0.2.11" "@floating-ui/dom@^1.0.1": - version "1.6.12" - resolved "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.12.tgz" - integrity sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w== + version "1.7.6" + resolved "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.6.tgz" + integrity sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ== dependencies: - "@floating-ui/core" "^1.6.0" - "@floating-ui/utils" "^0.2.8" + "@floating-ui/core" "^1.7.5" + "@floating-ui/utils" "^0.2.11" -"@floating-ui/utils@^0.2.8": - version "0.2.8" - resolved "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.8.tgz" - integrity sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig== +"@floating-ui/utils@^0.2.11": + version "0.2.11" + resolved "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.11.tgz" + integrity sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg== "@hapi/hoek@^9.0.0", "@hapi/hoek@^9.3.0": version "9.3.0" @@ -2992,18 +3093,14 @@ resolved "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz" integrity sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg== -"@iconify/utils@^2.1.32": - version "2.1.33" - resolved "https://registry.npmjs.org/@iconify/utils/-/utils-2.1.33.tgz" - integrity sha512-jP9h6v/g0BIZx0p7XGJJVtkVnydtbgTgt9mVNcGDYwaa7UhdHdI9dvoq+gKj9sijMSJKxUPEG2JyjsgXjxL7Kw== +"@iconify/utils@^3.0.2": + version "3.1.3" + resolved "https://registry.npmjs.org/@iconify/utils/-/utils-3.1.3.tgz" + integrity sha512-LPKOXPn/zV+zis1oOfGWogaXVpqUybF3ZS6SCZIsz8vg0ivVp9+fVqyYB7xq0aiST/VhUQYGO1qo6uoYSiEJqw== dependencies: - "@antfu/install-pkg" "^0.4.0" - "@antfu/utils" "^0.7.10" + "@antfu/install-pkg" "^1.1.0" "@iconify/types" "^2.0.0" - debug "^4.3.6" - kolorist "^1.8.0" - local-pkg "^0.5.0" - mlly "^1.7.1" + import-meta-resolve "^4.2.0" "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" @@ -3017,9 +3114,9 @@ resolve-from "^5.0.0" "@istanbuljs/schema@^0.1.2": - version "0.1.3" - resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" - integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + version "0.1.6" + resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.6.tgz" + integrity sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw== "@jest/console@^27.5.1": version "27.5.1" @@ -3209,13 +3306,20 @@ "@types/yargs" "^17.0.8" chalk "^4.0.0" -"@jridgewell/gen-mapping@^0.3.5": - version "0.3.5" - resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz" - integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== +"@jridgewell/gen-mapping@^0.3.12", "@jridgewell/gen-mapping@^0.3.5": + version "0.3.13" + resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz" + integrity sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA== dependencies: - "@jridgewell/set-array" "^1.2.1" - "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/sourcemap-codec" "^1.5.0" + "@jridgewell/trace-mapping" "^0.3.24" + +"@jridgewell/remapping@^2.3.5": + version "2.3.5" + resolved "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz" + integrity sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.24" "@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0": @@ -3223,23 +3327,18 @@ resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz" integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== -"@jridgewell/set-array@^1.2.1": - version "1.2.1" - resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz" - integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== - "@jridgewell/source-map@^0.3.3": - version "0.3.6" - resolved "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz" - integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== + version "0.3.11" + resolved "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz" + integrity sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA== dependencies: "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.25" -"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": - version "1.5.0" - resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz" - integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.5.0": + version "1.5.5" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz" + integrity sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og== "@jridgewell/trace-mapping@0.3.9": version "0.3.9" @@ -3249,14 +3348,174 @@ "@jridgewell/resolve-uri" "^3.0.3" "@jridgewell/sourcemap-codec" "^1.4.10" -"@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": - version "0.3.25" - resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz" - integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== +"@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25", "@jridgewell/trace-mapping@^0.3.28": + version "0.3.31" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz" + integrity sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw== dependencies: "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" +"@jsonjoy.com/base64@17.67.0": + version "17.67.0" + resolved "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-17.67.0.tgz" + integrity sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw== + +"@jsonjoy.com/base64@^1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz" + integrity sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA== + +"@jsonjoy.com/buffers@17.67.0", "@jsonjoy.com/buffers@^17.65.0": + version "17.67.0" + resolved "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-17.67.0.tgz" + integrity sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw== + +"@jsonjoy.com/buffers@^1.0.0", "@jsonjoy.com/buffers@^1.2.0": + version "1.2.1" + resolved "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz" + integrity sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA== + +"@jsonjoy.com/codegen@17.67.0": + version "17.67.0" + resolved "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-17.67.0.tgz" + integrity sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q== + +"@jsonjoy.com/codegen@^1.0.0": + version "1.0.0" + resolved "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-1.0.0.tgz" + integrity sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g== + +"@jsonjoy.com/fs-core@4.57.2": + version "4.57.2" + resolved "https://registry.npmjs.org/@jsonjoy.com/fs-core/-/fs-core-4.57.2.tgz" + integrity sha512-SVjwklkpIV5wrynpYtuYnfYH1QF4/nDuLBX7VXdb+3miglcAgBVZb/5y0cOsehRV/9Vb+3UqhkMq3/NR3ztdkQ== + dependencies: + "@jsonjoy.com/fs-node-builtins" "4.57.2" + "@jsonjoy.com/fs-node-utils" "4.57.2" + thingies "^2.5.0" + +"@jsonjoy.com/fs-fsa@4.57.2": + version "4.57.2" + resolved "https://registry.npmjs.org/@jsonjoy.com/fs-fsa/-/fs-fsa-4.57.2.tgz" + integrity sha512-fhO8+iR2I+OCw668ISDJdn1aArc9zx033sWejIyzQ8RBeXa9bDSaUeA3ix0poYOfrj1KdOzytmYNv2/uLDfV6g== + dependencies: + "@jsonjoy.com/fs-core" "4.57.2" + "@jsonjoy.com/fs-node-builtins" "4.57.2" + "@jsonjoy.com/fs-node-utils" "4.57.2" + thingies "^2.5.0" + +"@jsonjoy.com/fs-node-builtins@4.57.2": + version "4.57.2" + resolved "https://registry.npmjs.org/@jsonjoy.com/fs-node-builtins/-/fs-node-builtins-4.57.2.tgz" + integrity sha512-xhiegylRmhw43Ki2HO1ZBL7DQ5ja/qpRsL29VtQ2xuUHiuDGbgf2uD4p9Qd8hJI5P6RCtGYD50IXHXVq/Ocjcg== + +"@jsonjoy.com/fs-node-to-fsa@4.57.2": + version "4.57.2" + resolved "https://registry.npmjs.org/@jsonjoy.com/fs-node-to-fsa/-/fs-node-to-fsa-4.57.2.tgz" + integrity sha512-18LmWTSONhoAPW+IWRuf8w/+zRolPFGPeGwMxlAhhfY11EKzX+5XHDBPAw67dBF5dxDErHJbl40U+3IXSDRXSQ== + dependencies: + "@jsonjoy.com/fs-fsa" "4.57.2" + "@jsonjoy.com/fs-node-builtins" "4.57.2" + "@jsonjoy.com/fs-node-utils" "4.57.2" + +"@jsonjoy.com/fs-node-utils@4.57.2": + version "4.57.2" + resolved "https://registry.npmjs.org/@jsonjoy.com/fs-node-utils/-/fs-node-utils-4.57.2.tgz" + integrity sha512-rsPSJgekz43IlNbLyAM/Ab+ouYLWGp5DDBfYBNNEqDaSpsbXfthBn29Q4muFA9L0F+Z3mKo+CWlgSCXrf+mOyQ== + dependencies: + "@jsonjoy.com/fs-node-builtins" "4.57.2" + +"@jsonjoy.com/fs-node@4.57.2": + version "4.57.2" + resolved "https://registry.npmjs.org/@jsonjoy.com/fs-node/-/fs-node-4.57.2.tgz" + integrity sha512-nX2AdL6cOFwLdju9G4/nbRnYevmCJbh7N7hvR3gGm97Cs60uEjyd0rpR+YBS7cTg175zzl22pGKXR5USaQMvKg== + dependencies: + "@jsonjoy.com/fs-core" "4.57.2" + "@jsonjoy.com/fs-node-builtins" "4.57.2" + "@jsonjoy.com/fs-node-utils" "4.57.2" + "@jsonjoy.com/fs-print" "4.57.2" + "@jsonjoy.com/fs-snapshot" "4.57.2" + glob-to-regex.js "^1.0.0" + thingies "^2.5.0" + +"@jsonjoy.com/fs-print@4.57.2": + version "4.57.2" + resolved "https://registry.npmjs.org/@jsonjoy.com/fs-print/-/fs-print-4.57.2.tgz" + integrity sha512-wK9NSow48i4DbDl9F1CQE5TqnyZOJ04elU3WFG5aJ76p+YxO/ulyBBQvKsessPxdo381Bc2pcEoyPujMOhcRqQ== + dependencies: + "@jsonjoy.com/fs-node-utils" "4.57.2" + tree-dump "^1.1.0" + +"@jsonjoy.com/fs-snapshot@4.57.2": + version "4.57.2" + resolved "https://registry.npmjs.org/@jsonjoy.com/fs-snapshot/-/fs-snapshot-4.57.2.tgz" + integrity sha512-GdduDZuoP5V/QCgJkx9+BZ6SC0EZ/smXAdTS7PfMqgMTGXLlt/bH/FqMYaqB9JmLf05sJPtO0XRbAwwkEEPbVw== + dependencies: + "@jsonjoy.com/buffers" "^17.65.0" + "@jsonjoy.com/fs-node-utils" "4.57.2" + "@jsonjoy.com/json-pack" "^17.65.0" + "@jsonjoy.com/util" "^17.65.0" + +"@jsonjoy.com/json-pack@^1.11.0": + version "1.21.0" + resolved "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.21.0.tgz" + integrity sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg== + dependencies: + "@jsonjoy.com/base64" "^1.1.2" + "@jsonjoy.com/buffers" "^1.2.0" + "@jsonjoy.com/codegen" "^1.0.0" + "@jsonjoy.com/json-pointer" "^1.0.2" + "@jsonjoy.com/util" "^1.9.0" + hyperdyperid "^1.2.0" + thingies "^2.5.0" + tree-dump "^1.1.0" + +"@jsonjoy.com/json-pack@^17.65.0": + version "17.67.0" + resolved "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-17.67.0.tgz" + integrity sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w== + dependencies: + "@jsonjoy.com/base64" "17.67.0" + "@jsonjoy.com/buffers" "17.67.0" + "@jsonjoy.com/codegen" "17.67.0" + "@jsonjoy.com/json-pointer" "17.67.0" + "@jsonjoy.com/util" "17.67.0" + hyperdyperid "^1.2.0" + thingies "^2.5.0" + tree-dump "^1.1.0" + +"@jsonjoy.com/json-pointer@17.67.0": + version "17.67.0" + resolved "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-17.67.0.tgz" + integrity sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA== + dependencies: + "@jsonjoy.com/util" "17.67.0" + +"@jsonjoy.com/json-pointer@^1.0.2": + version "1.0.2" + resolved "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-1.0.2.tgz" + integrity sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg== + dependencies: + "@jsonjoy.com/codegen" "^1.0.0" + "@jsonjoy.com/util" "^1.9.0" + +"@jsonjoy.com/util@17.67.0", "@jsonjoy.com/util@^17.65.0": + version "17.67.0" + resolved "https://registry.npmjs.org/@jsonjoy.com/util/-/util-17.67.0.tgz" + integrity sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew== + dependencies: + "@jsonjoy.com/buffers" "17.67.0" + "@jsonjoy.com/codegen" "17.67.0" + +"@jsonjoy.com/util@^1.9.0": + version "1.9.0" + resolved "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.9.0.tgz" + integrity sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ== + dependencies: + "@jsonjoy.com/buffers" "^1.0.0" + "@jsonjoy.com/codegen" "^1.0.0" + "@leichtgewicht/ip-codec@^2.0.1": version "2.0.5" resolved "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz" @@ -3288,14 +3547,15 @@ unist-util-visit "2.0.3" "@mdx-js/mdx@^3.0.0": - version "3.1.0" - resolved "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.0.tgz" - integrity sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw== + version "3.1.1" + resolved "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.1.tgz" + integrity sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ== dependencies: "@types/estree" "^1.0.0" "@types/estree-jsx" "^1.0.0" "@types/hast" "^3.0.0" "@types/mdx" "^2.0.0" + acorn "^8.0.0" collapse-white-space "^2.0.0" devlop "^1.0.0" estree-util-is-identifier-name "^3.0.0" @@ -3318,9 +3578,9 @@ vfile "^6.0.0" "@mdx-js/react@^3.0.0", "@mdx-js/react@^3.0.1": - version "3.1.0" - resolved "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.0.tgz" - integrity sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ== + version "3.1.1" + resolved "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.1.tgz" + integrity sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw== dependencies: "@types/mdx" "^2.0.0" @@ -3329,53 +3589,74 @@ resolved "https://registry.npmjs.org/@mdx-js/util/-/util-1.6.22.tgz" integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA== -"@mermaid-js/parser@^0.3.0": - version "0.3.0" - resolved "https://registry.npmjs.org/@mermaid-js/parser/-/parser-0.3.0.tgz" - integrity sha512-HsvL6zgE5sUPGgkIDlmAWR1HTNHz2Iy11BAWPTa4Jjabkpguy4Ze2gzfLrg6pdRuBvFwgUYyxiaNqZwrEEXepA== +"@mermaid-js/parser@^1.1.1": + version "1.1.1" + resolved "https://registry.npmjs.org/@mermaid-js/parser/-/parser-1.1.1.tgz" + integrity sha512-VuHdsYMK1bT6X2JbcAaWAhugTRvRBRyuZgd+c22swUeI9g/ntaxF7CY7dYarhZovofCbUNO0G7JesfmNtjYOCw== dependencies: - langium "3.0.0" + "@chevrotain/types" "~11.1.1" "@mixmark-io/domino@^2.2.0": version "2.2.0" - resolved "https://registry.yarnpkg.com/@mixmark-io/domino/-/domino-2.2.0.tgz#4e8ec69bf1afeb7a14f0628b7e2c0f35bdb336c3" + resolved "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz" integrity sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw== -"@module-federation/error-codes@0.8.4": - version "0.8.4" - resolved "https://registry.npmjs.org/@module-federation/error-codes/-/error-codes-0.8.4.tgz" - integrity sha512-55LYmrDdKb4jt+qr8qE8U3al62ZANp3FhfVaNPOaAmdTh0jHdD8M3yf5HKFlr5xVkVO4eV/F/J2NCfpbh+pEXQ== +"@module-federation/error-codes@0.22.0": + version "0.22.0" + resolved "https://registry.npmjs.org/@module-federation/error-codes/-/error-codes-0.22.0.tgz" + integrity sha512-xF9SjnEy7vTdx+xekjPCV5cIHOGCkdn3pIxo9vU7gEZMIw0SvAEdsy6Uh17xaCpm8V0FWvR0SZoK9Ik6jGOaug== + +"@module-federation/runtime-core@0.22.0": + version "0.22.0" + resolved "https://registry.npmjs.org/@module-federation/runtime-core/-/runtime-core-0.22.0.tgz" + integrity sha512-GR1TcD6/s7zqItfhC87zAp30PqzvceoeDGYTgF3Vx2TXvsfDrhP6Qw9T4vudDQL3uJRne6t7CzdT29YyVxlgIA== + dependencies: + "@module-federation/error-codes" "0.22.0" + "@module-federation/sdk" "0.22.0" -"@module-federation/runtime-tools@0.8.4": - version "0.8.4" - resolved "https://registry.npmjs.org/@module-federation/runtime-tools/-/runtime-tools-0.8.4.tgz" - integrity sha512-fjVOsItJ1u5YY6E9FnS56UDwZgqEQUrWFnouRiPtK123LUuqUI9FH4redZoKWlE1PB0ir1Z3tnqy8eFYzPO38Q== +"@module-federation/runtime-tools@0.22.0": + version "0.22.0" + resolved "https://registry.npmjs.org/@module-federation/runtime-tools/-/runtime-tools-0.22.0.tgz" + integrity sha512-4ScUJ/aUfEernb+4PbLdhM/c60VHl698Gn1gY21m9vyC1Ucn69fPCA1y2EwcCB7IItseRMoNhdcWQnzt/OPCNA== dependencies: - "@module-federation/runtime" "0.8.4" - "@module-federation/webpack-bundler-runtime" "0.8.4" + "@module-federation/runtime" "0.22.0" + "@module-federation/webpack-bundler-runtime" "0.22.0" -"@module-federation/runtime@0.8.4": - version "0.8.4" - resolved "https://registry.npmjs.org/@module-federation/runtime/-/runtime-0.8.4.tgz" - integrity sha512-yZeZ7z2Rx4gv/0E97oLTF3V6N25vglmwXGgoeju/W2YjsFvWzVtCDI7zRRb0mJhU6+jmSM8jP1DeQGbea/AiZQ== +"@module-federation/runtime@0.22.0": + version "0.22.0" + resolved "https://registry.npmjs.org/@module-federation/runtime/-/runtime-0.22.0.tgz" + integrity sha512-38g5iPju2tPC3KHMPxRKmy4k4onNp6ypFPS1eKGsNLUkXgHsPMBFqAjDw96iEcjri91BrahG4XcdyKi97xZzlA== dependencies: - "@module-federation/error-codes" "0.8.4" - "@module-federation/sdk" "0.8.4" + "@module-federation/error-codes" "0.22.0" + "@module-federation/runtime-core" "0.22.0" + "@module-federation/sdk" "0.22.0" + +"@module-federation/sdk@0.22.0": + version "0.22.0" + resolved "https://registry.npmjs.org/@module-federation/sdk/-/sdk-0.22.0.tgz" + integrity sha512-x4aFNBKn2KVQRuNVC5A7SnrSCSqyfIWmm1DvubjbO9iKFe7ith5niw8dqSFBekYBg2Fwy+eMg4sEFNVvCAdo6g== -"@module-federation/sdk@0.8.4": - version "0.8.4" - resolved "https://registry.npmjs.org/@module-federation/sdk/-/sdk-0.8.4.tgz" - integrity sha512-waABomIjg/5m1rPDBWYG4KUhS5r7OUUY7S+avpaVIY/tkPWB3ibRDKy2dNLLAMaLKq0u+B1qIdEp4NIWkqhqpg== +"@module-federation/webpack-bundler-runtime@0.22.0": + version "0.22.0" + resolved "https://registry.npmjs.org/@module-federation/webpack-bundler-runtime/-/webpack-bundler-runtime-0.22.0.tgz" + integrity sha512-aM8gCqXu+/4wBmJtVeMeeMN5guw3chf+2i6HajKtQv7SJfxV/f4IyNQJUeUQu9HfiAZHjqtMV5Lvq/Lvh8LdyA== dependencies: - isomorphic-rslog "0.0.6" + "@module-federation/runtime" "0.22.0" + "@module-federation/sdk" "0.22.0" -"@module-federation/webpack-bundler-runtime@0.8.4": - version "0.8.4" - resolved "https://registry.npmjs.org/@module-federation/webpack-bundler-runtime/-/webpack-bundler-runtime-0.8.4.tgz" - integrity sha512-HggROJhvHPUX7uqBD/XlajGygMNM1DG0+4OAkk8MBQe4a18QzrRNzZt6XQbRTSG4OaEoyRWhQHvYD3Yps405tQ== +"@napi-rs/wasm-runtime@1.0.7": + version "1.0.7" + resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.0.7.tgz#dcfea99a75f06209a235f3d941e3460a51e9b14c" + integrity sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw== dependencies: - "@module-federation/runtime" "0.8.4" - "@module-federation/sdk" "0.8.4" + "@emnapi/core" "^1.5.0" + "@emnapi/runtime" "^1.5.0" + "@tybys/wasm-util" "^0.10.1" + +"@noble/hashes@1.4.0": + version "1.4.0" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz" + integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== "@nodelib/fs.scandir@2.1.5": version "2.1.5" @@ -3400,7 +3681,7 @@ "@octokit/auth-app@^3.6.1": version "3.6.1" - resolved "https://registry.yarnpkg.com/@octokit/auth-app/-/auth-app-3.6.1.tgz#aa5b02cc211175cbc28ce6c03c73373c1206d632" + resolved "https://registry.npmjs.org/@octokit/auth-app/-/auth-app-3.6.1.tgz" integrity sha512-6oa6CFphIYI7NxxHrdVOzhG7hkcKyGyYocg7lNDSJVauVOLtylg8hNJzoUyPAYKKK0yUeoZamE/lMs2tG+S+JA== dependencies: "@octokit/auth-oauth-app" "^4.3.0" @@ -3416,7 +3697,7 @@ "@octokit/auth-oauth-app@^4.3.0": version "4.3.4" - resolved "https://registry.yarnpkg.com/@octokit/auth-oauth-app/-/auth-oauth-app-4.3.4.tgz#7030955b1a59d4d977904775c606477d95fcfe8e" + resolved "https://registry.npmjs.org/@octokit/auth-oauth-app/-/auth-oauth-app-4.3.4.tgz" integrity sha512-OYOTSSINeUAiLMk1uelaGB/dEkReBqHHr8+hBejzMG4z1vA4c7QSvDAS0RVZSr4oD4PEUPYFzEl34K7uNrXcWA== dependencies: "@octokit/auth-oauth-device" "^3.1.1" @@ -3429,7 +3710,7 @@ "@octokit/auth-oauth-device@^3.1.1": version "3.1.4" - resolved "https://registry.yarnpkg.com/@octokit/auth-oauth-device/-/auth-oauth-device-3.1.4.tgz#703c42f27a1e2eb23498a7001ad8e9ecf4a2f477" + resolved "https://registry.npmjs.org/@octokit/auth-oauth-device/-/auth-oauth-device-3.1.4.tgz" integrity sha512-6sHE/++r+aEFZ/BKXOGPJcH/nbgbBjS1A4CHfq/PbPEwb0kZEt43ykW98GBO/rYBPAYaNpCPvXfGwzgR9yMCXg== dependencies: "@octokit/oauth-methods" "^2.0.0" @@ -3439,7 +3720,7 @@ "@octokit/auth-oauth-device@^4.0.0": version "4.0.5" - resolved "https://registry.yarnpkg.com/@octokit/auth-oauth-device/-/auth-oauth-device-4.0.5.tgz#21e981f51ae63d419ca3db0b75e32c85b33fa0da" + resolved "https://registry.npmjs.org/@octokit/auth-oauth-device/-/auth-oauth-device-4.0.5.tgz" integrity sha512-XyhoWRTzf2ZX0aZ52a6Ew5S5VBAfwwx1QnC2Np6Et3MWQpZjlREIcbcvVZtkNuXp6Z9EeiSLSDUqm3C+aMEHzQ== dependencies: "@octokit/oauth-methods" "^2.0.0" @@ -3449,7 +3730,7 @@ "@octokit/auth-oauth-user@^1.2.3": version "1.3.0" - resolved "https://registry.yarnpkg.com/@octokit/auth-oauth-user/-/auth-oauth-user-1.3.0.tgz#da4e4529145181a6aa717ae858afb76ebd6e3360" + resolved "https://registry.npmjs.org/@octokit/auth-oauth-user/-/auth-oauth-user-1.3.0.tgz" integrity sha512-3QC/TAdk7onnxfyZ24BnJRfZv8TRzQK7SEFUS9vLng4Vv6Hv6I64ujdk/CUkREec8lhrwU764SZ/d+yrjjqhaQ== dependencies: "@octokit/auth-oauth-device" "^3.1.1" @@ -3461,7 +3742,7 @@ "@octokit/auth-oauth-user@^2.0.0": version "2.1.2" - resolved "https://registry.yarnpkg.com/@octokit/auth-oauth-user/-/auth-oauth-user-2.1.2.tgz#7091e1b29527e577b16d0f1699d49fe3d39946ff" + resolved "https://registry.npmjs.org/@octokit/auth-oauth-user/-/auth-oauth-user-2.1.2.tgz" integrity sha512-kkRqNmFe7s5GQcojE3nSlF+AzYPpPv7kvP/xYEnE57584pixaFBH8Vovt+w5Y3E4zWUEOxjdLItmBTFAWECPAg== dependencies: "@octokit/auth-oauth-device" "^4.0.0" @@ -3473,14 +3754,14 @@ "@octokit/auth-token@^2.4.4": version "2.5.0" - resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.5.0.tgz#27c37ea26c205f28443402477ffd261311f21e36" + resolved "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz" integrity sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g== dependencies: "@octokit/types" "^6.0.3" "@octokit/core@^3.5.1": version "3.6.0" - resolved "https://registry.yarnpkg.com/@octokit/core/-/core-3.6.0.tgz#3376cb9f3008d9b3d110370d90e0a1fcd5fe6085" + resolved "https://registry.npmjs.org/@octokit/core/-/core-3.6.0.tgz" integrity sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q== dependencies: "@octokit/auth-token" "^2.4.4" @@ -3493,7 +3774,7 @@ "@octokit/endpoint@^6.0.1": version "6.0.12" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.12.tgz#3b4d47a4b0e79b1027fb8d75d4221928b2d05658" + resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz" integrity sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA== dependencies: "@octokit/types" "^6.0.3" @@ -3502,7 +3783,7 @@ "@octokit/endpoint@^7.0.0": version "7.0.6" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.6.tgz#791f65d3937555141fb6c08f91d618a7d645f1e2" + resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.6.tgz" integrity sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg== dependencies: "@octokit/types" "^9.0.0" @@ -3511,7 +3792,7 @@ "@octokit/graphql@^4.5.8": version "4.8.0" - resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.8.0.tgz#664d9b11c0e12112cbf78e10f49a05959aa22cc3" + resolved "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz" integrity sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg== dependencies: "@octokit/request" "^5.6.0" @@ -3520,17 +3801,17 @@ "@octokit/oauth-authorization-url@^4.3.1": version "4.3.3" - resolved "https://registry.yarnpkg.com/@octokit/oauth-authorization-url/-/oauth-authorization-url-4.3.3.tgz#6a6ef38f243086fec882b62744f39b517528dfb9" + resolved "https://registry.npmjs.org/@octokit/oauth-authorization-url/-/oauth-authorization-url-4.3.3.tgz" integrity sha512-lhP/t0i8EwTmayHG4dqLXgU+uPVys4WD/qUNvC+HfB1S1dyqULm5Yx9uKc1x79aP66U1Cb4OZeW8QU/RA9A4XA== "@octokit/oauth-authorization-url@^5.0.0": version "5.0.0" - resolved "https://registry.yarnpkg.com/@octokit/oauth-authorization-url/-/oauth-authorization-url-5.0.0.tgz#029626ce87f3b31addb98cd0d2355c2381a1c5a1" + resolved "https://registry.npmjs.org/@octokit/oauth-authorization-url/-/oauth-authorization-url-5.0.0.tgz" integrity sha512-y1WhN+ERDZTh0qZ4SR+zotgsQUE1ysKnvBt1hvDRB2WRzYtVKQjn97HEPzoehh66Fj9LwNdlZh+p6TJatT0zzg== "@octokit/oauth-methods@^1.1.0": version "1.2.6" - resolved "https://registry.yarnpkg.com/@octokit/oauth-methods/-/oauth-methods-1.2.6.tgz#b9ac65e374b2cc55ee9dd8dcdd16558550438ea7" + resolved "https://registry.npmjs.org/@octokit/oauth-methods/-/oauth-methods-1.2.6.tgz" integrity sha512-nImHQoOtKnSNn05uk2o76om1tJWiAo4lOu2xMAHYsNr0fwopP+Dv+2MlGvaMMlFjoqVd3fF3X5ZDTKCsqgmUaQ== dependencies: "@octokit/oauth-authorization-url" "^4.3.1" @@ -3541,7 +3822,7 @@ "@octokit/oauth-methods@^2.0.0": version "2.0.6" - resolved "https://registry.yarnpkg.com/@octokit/oauth-methods/-/oauth-methods-2.0.6.tgz#3a089781e90171cbe8a0efa448a6a60229bdd3fb" + resolved "https://registry.npmjs.org/@octokit/oauth-methods/-/oauth-methods-2.0.6.tgz" integrity sha512-l9Uml2iGN2aTWLZcm8hV+neBiFXAQ9+3sKiQe/sgumHlL6HDg0AQ8/l16xX/5jJvfxueqTW5CWbzd0MjnlfHZw== dependencies: "@octokit/oauth-authorization-url" "^5.0.0" @@ -3552,29 +3833,29 @@ "@octokit/openapi-types@^12.11.0": version "12.11.0" - resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-12.11.0.tgz#da5638d64f2b919bca89ce6602d059f1b52d3ef0" + resolved "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-12.11.0.tgz" integrity sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ== "@octokit/openapi-types@^18.0.0": version "18.1.1" - resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-18.1.1.tgz#09bdfdabfd8e16d16324326da5148010d765f009" + resolved "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-18.1.1.tgz" integrity sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw== "@octokit/plugin-paginate-rest@^2.16.8": version "2.21.3" - resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz#7f12532797775640dbb8224da577da7dc210c87e" + resolved "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz" integrity sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw== dependencies: "@octokit/types" "^6.40.0" "@octokit/plugin-request-log@^1.0.4": version "1.0.4" - resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz#5e50ed7083a613816b1e4a28aeec5fb7f1462e85" + resolved "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz" integrity sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA== "@octokit/plugin-rest-endpoint-methods@^5.12.0": version "5.16.2" - resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.16.2.tgz#7ee8bf586df97dd6868cf68f641354e908c25342" + resolved "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.16.2.tgz" integrity sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw== dependencies: "@octokit/types" "^6.39.0" @@ -3582,7 +3863,7 @@ "@octokit/plugin-retry@^3.0.9": version "3.0.9" - resolved "https://registry.yarnpkg.com/@octokit/plugin-retry/-/plugin-retry-3.0.9.tgz#ae625cca1e42b0253049102acd71c1d5134788fe" + resolved "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-3.0.9.tgz" integrity sha512-r+fArdP5+TG6l1Rv/C9hVoty6tldw6cE2pRHNGmFPdyfrc696R6JjrQ3d7HdVqGwuzfyrcaLAKD7K8TX8aehUQ== dependencies: "@octokit/types" "^6.0.3" @@ -3590,7 +3871,7 @@ "@octokit/request-error@^2.0.2", "@octokit/request-error@^2.0.5", "@octokit/request-error@^2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.1.0.tgz#9e150357831bfc788d13a4fd4b1913d60c74d677" + resolved "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz" integrity sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg== dependencies: "@octokit/types" "^6.0.3" @@ -3599,7 +3880,7 @@ "@octokit/request-error@^3.0.0", "@octokit/request-error@^3.0.3": version "3.0.3" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-3.0.3.tgz#ef3dd08b8e964e53e55d471acfe00baa892b9c69" + resolved "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz" integrity sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ== dependencies: "@octokit/types" "^9.0.0" @@ -3608,7 +3889,7 @@ "@octokit/request@^5.4.14", "@octokit/request@^5.6.0", "@octokit/request@^5.6.3": version "5.6.3" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.6.3.tgz#19a022515a5bba965ac06c9d1334514eb50c48b0" + resolved "https://registry.npmjs.org/@octokit/request/-/request-5.6.3.tgz" integrity sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A== dependencies: "@octokit/endpoint" "^6.0.1" @@ -3620,7 +3901,7 @@ "@octokit/request@^6.0.0", "@octokit/request@^6.2.3": version "6.2.8" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.8.tgz#aaf480b32ab2b210e9dadd8271d187c93171d8eb" + resolved "https://registry.npmjs.org/@octokit/request/-/request-6.2.8.tgz" integrity sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw== dependencies: "@octokit/endpoint" "^7.0.0" @@ -3632,7 +3913,7 @@ "@octokit/rest@^18.12.0": version "18.12.0" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-18.12.0.tgz#f06bc4952fc87130308d810ca9d00e79f6988881" + resolved "https://registry.npmjs.org/@octokit/rest/-/rest-18.12.0.tgz" integrity sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q== dependencies: "@octokit/core" "^3.5.1" @@ -3642,31 +3923,31 @@ "@octokit/types@^6.0.3", "@octokit/types@^6.10.0", "@octokit/types@^6.12.2", "@octokit/types@^6.16.1", "@octokit/types@^6.39.0", "@octokit/types@^6.40.0": version "6.41.0" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-6.41.0.tgz#e58ef78d78596d2fb7df9c6259802464b5f84a04" + resolved "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz" integrity sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg== dependencies: "@octokit/openapi-types" "^12.11.0" "@octokit/types@^9.0.0": version "9.3.2" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.3.2.tgz#3f5f89903b69f6a2d196d78ec35f888c0013cac5" + resolved "https://registry.npmjs.org/@octokit/types/-/types-9.3.2.tgz" integrity sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA== dependencies: "@octokit/openapi-types" "^18.0.0" "@octokit/webhooks-methods@^2.0.0": version "2.0.0" - resolved "https://registry.yarnpkg.com/@octokit/webhooks-methods/-/webhooks-methods-2.0.0.tgz#1108b9ea661ca6c81e4a8bfa63a09eb27d5bc2db" + resolved "https://registry.npmjs.org/@octokit/webhooks-methods/-/webhooks-methods-2.0.0.tgz" integrity sha512-35cfQ4YWlnZnmZKmIxlGPUPLtbkF8lr/A/1Sk1eC0ddLMwQN06dOuLc+dI3YLQS+T+MoNt3DIQ0NynwgKPilig== "@octokit/webhooks-types@5.8.0": version "5.8.0" - resolved "https://registry.yarnpkg.com/@octokit/webhooks-types/-/webhooks-types-5.8.0.tgz#b76d1a3e3ad82cec5680d3c6c3443a620047a6ef" + resolved "https://registry.npmjs.org/@octokit/webhooks-types/-/webhooks-types-5.8.0.tgz" integrity sha512-8adktjIb76A7viIdayQSFuBEwOzwhDC+9yxZpKNHjfzrlostHCw0/N7JWpWMObfElwvJMk2fY2l1noENCk9wmw== "@octokit/webhooks@^9.22.0": version "9.26.3" - resolved "https://registry.yarnpkg.com/@octokit/webhooks/-/webhooks-9.26.3.tgz#44353c4915229efeb3d01f9ab7adfdc2911535ae" + resolved "https://registry.npmjs.org/@octokit/webhooks/-/webhooks-9.26.3.tgz" integrity sha512-DLGk+gzeVq5oK89Bo601txYmyrelMQ7Fi5EnjHE0Xs8CWicy2xkmnJMKptKJrBJpstqbd/9oeDFi/Zj2pudBDQ== dependencies: "@octokit/request-error" "^2.0.2" @@ -3674,6 +3955,136 @@ "@octokit/webhooks-types" "5.8.0" aggregate-error "^3.1.0" +"@peculiar/asn1-cms@^2.6.0", "@peculiar/asn1-cms@^2.7.0": + version "2.7.0" + resolved "https://registry.npmjs.org/@peculiar/asn1-cms/-/asn1-cms-2.7.0.tgz" + integrity sha512-hew63shtzzvBcSHbhm+cyAmKe6AIfinT9hzEqSPjDC6opTTMKmTkQ0gHuN2KsWlvqiKw1S/fS94fhag/FJkioQ== + dependencies: + "@peculiar/asn1-schema" "^2.7.0" + "@peculiar/asn1-x509" "^2.7.0" + "@peculiar/asn1-x509-attr" "^2.7.0" + asn1js "^3.0.6" + tslib "^2.8.1" + +"@peculiar/asn1-csr@^2.6.0": + version "2.7.0" + resolved "https://registry.npmjs.org/@peculiar/asn1-csr/-/asn1-csr-2.7.0.tgz" + integrity sha512-VVsAyGqErT9D1SY4aEqozThXMVI+ssVRiv2DDeYuvpBKLIgZ3hYs3Ay3u/VSoKq6ESFi9cf6rf3IOOzfwh7oMA== + dependencies: + "@peculiar/asn1-schema" "^2.7.0" + "@peculiar/asn1-x509" "^2.7.0" + asn1js "^3.0.6" + tslib "^2.8.1" + +"@peculiar/asn1-ecc@^2.6.0": + version "2.7.0" + resolved "https://registry.npmjs.org/@peculiar/asn1-ecc/-/asn1-ecc-2.7.0.tgz" + integrity sha512-n7KEs/Q/wrB415cxy4fHOBhegp4NdJ15fkJPwcB/3/8iNBQC2L/N7SChJPKDJPZGYH0jD4Tg4/0vnHmwghnbKw== + dependencies: + "@peculiar/asn1-schema" "^2.7.0" + "@peculiar/asn1-x509" "^2.7.0" + asn1js "^3.0.6" + tslib "^2.8.1" + +"@peculiar/asn1-pfx@^2.7.0": + version "2.7.0" + resolved "https://registry.npmjs.org/@peculiar/asn1-pfx/-/asn1-pfx-2.7.0.tgz" + integrity sha512-V/nrlQVmhg7lYAsM7E13UDL5erAwFv6kCIVFqNaMIHSVi7dngcT839JkRTkQBqznMG98l2XjxYk74ZztAohZzA== + dependencies: + "@peculiar/asn1-cms" "^2.7.0" + "@peculiar/asn1-pkcs8" "^2.7.0" + "@peculiar/asn1-rsa" "^2.7.0" + "@peculiar/asn1-schema" "^2.7.0" + asn1js "^3.0.6" + tslib "^2.8.1" + +"@peculiar/asn1-pkcs8@^2.7.0": + version "2.7.0" + resolved "https://registry.npmjs.org/@peculiar/asn1-pkcs8/-/asn1-pkcs8-2.7.0.tgz" + integrity sha512-9GTl1nE8Mx1kTZ+7QyYatDyKsm34QcWRBFkY1iPvWC3X4Dona5s/tlLiQsx5WzVdZqiMBZNYT0buyw4/vbhnjw== + dependencies: + "@peculiar/asn1-schema" "^2.7.0" + "@peculiar/asn1-x509" "^2.7.0" + asn1js "^3.0.6" + tslib "^2.8.1" + +"@peculiar/asn1-pkcs9@^2.6.0": + version "2.7.0" + resolved "https://registry.npmjs.org/@peculiar/asn1-pkcs9/-/asn1-pkcs9-2.7.0.tgz" + integrity sha512-Bh7m+OuIaSEllPQcSd9OSp93F4ROWH7sbITWV8MI+8dwsjE5111/87VxiWVvYFKyww3vp39geLv9ENqhwWHcew== + dependencies: + "@peculiar/asn1-cms" "^2.7.0" + "@peculiar/asn1-pfx" "^2.7.0" + "@peculiar/asn1-pkcs8" "^2.7.0" + "@peculiar/asn1-schema" "^2.7.0" + "@peculiar/asn1-x509" "^2.7.0" + "@peculiar/asn1-x509-attr" "^2.7.0" + asn1js "^3.0.6" + tslib "^2.8.1" + +"@peculiar/asn1-rsa@^2.6.0", "@peculiar/asn1-rsa@^2.7.0": + version "2.7.0" + resolved "https://registry.npmjs.org/@peculiar/asn1-rsa/-/asn1-rsa-2.7.0.tgz" + integrity sha512-/qvENQrXyTZURjMqSeofHul0JJt2sNSzSwk36pl2olkHbaioMQgrASDZAlHXl0xUlnVbHj0uGgOrBMTb5x2aJQ== + dependencies: + "@peculiar/asn1-schema" "^2.7.0" + "@peculiar/asn1-x509" "^2.7.0" + asn1js "^3.0.6" + tslib "^2.8.1" + +"@peculiar/asn1-schema@^2.6.0", "@peculiar/asn1-schema@^2.7.0": + version "2.7.0" + resolved "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.7.0.tgz" + integrity sha512-W8ZfWzLmQnrcky+eh3tni4IozMdqBDiHWU0N+vve/UGjMaUs8c0L7A2oEdkBXS8rTpWDpK/aoI3DG/L/hxmxPg== + dependencies: + "@peculiar/utils" "^2.0.2" + asn1js "^3.0.6" + tslib "^2.8.1" + +"@peculiar/asn1-x509-attr@^2.7.0": + version "2.7.0" + resolved "https://registry.npmjs.org/@peculiar/asn1-x509-attr/-/asn1-x509-attr-2.7.0.tgz" + integrity sha512-NS8e7SOgXipkzUPLF/sce7ukpMpWjhxYsH0n6Y+bHYo4TTxOb95Zv7hqwSuL212mj5YxovjdOKQOgH1As3E94w== + dependencies: + "@peculiar/asn1-schema" "^2.7.0" + "@peculiar/asn1-x509" "^2.7.0" + asn1js "^3.0.6" + tslib "^2.8.1" + +"@peculiar/asn1-x509@^2.6.0", "@peculiar/asn1-x509@^2.7.0": + version "2.7.0" + resolved "https://registry.npmjs.org/@peculiar/asn1-x509/-/asn1-x509-2.7.0.tgz" + integrity sha512-mUn9RRrkGDnG4ALfunDmzyRW5dg+sWCj/pfnCCqEHYbkGxEpvUt6iVJv8Yw1cyp6SWZ26ZE5oSmI5SqEaen15g== + dependencies: + "@peculiar/asn1-schema" "^2.7.0" + "@peculiar/utils" "^2.0.2" + asn1js "^3.0.6" + tslib "^2.8.1" + +"@peculiar/utils@^2.0.2": + version "2.0.3" + resolved "https://registry.npmjs.org/@peculiar/utils/-/utils-2.0.3.tgz" + integrity sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ== + dependencies: + tslib "^2.8.1" + +"@peculiar/x509@^1.14.2": + version "1.14.3" + resolved "https://registry.npmjs.org/@peculiar/x509/-/x509-1.14.3.tgz" + integrity sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA== + dependencies: + "@peculiar/asn1-cms" "^2.6.0" + "@peculiar/asn1-csr" "^2.6.0" + "@peculiar/asn1-ecc" "^2.6.0" + "@peculiar/asn1-pkcs9" "^2.6.0" + "@peculiar/asn1-rsa" "^2.6.0" + "@peculiar/asn1-schema" "^2.6.0" + "@peculiar/asn1-x509" "^2.6.0" + pvtsutils "^1.3.6" + reflect-metadata "^0.2.2" + tslib "^2.8.1" + tsyringe "^4.10.0" + "@pnpm/config.env-replace@^1.1.0": version "1.1.0" resolved "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz" @@ -3686,94 +4097,101 @@ dependencies: graceful-fs "4.2.10" -"@pnpm/npm-conf@^2.1.0": - version "2.3.1" - resolved "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz" - integrity sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw== +"@pnpm/npm-conf@^3.0.2": + version "3.0.2" + resolved "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-3.0.2.tgz" + integrity sha512-h104Kh26rR8tm+a3Qkc5S4VLYint3FE48as7+/5oCEcKR2idC/pF1G6AhIXKI+eHPJa/3J9i5z0Al47IeGHPkA== dependencies: "@pnpm/config.env-replace" "^1.1.0" "@pnpm/network.ca-file" "^1.0.1" config-chain "^1.1.11" "@polka/url@^1.0.0-next.24": - version "1.0.0-next.28" - resolved "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz" - integrity sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw== - -"@rspack/binding-darwin-arm64@1.2.0-alpha.0": - version "1.2.0-alpha.0" - resolved "https://registry.npmjs.org/@rspack/binding-darwin-arm64/-/binding-darwin-arm64-1.2.0-alpha.0.tgz" - integrity sha512-EPprIe6BrkJ9XuWL5HBXJFaH4vvt5C2kBTvyu+t5E3wacyH9A0gIDaMOEmH30Kt3zl4B07OCBC1nCiJ1sTtimw== - -"@rspack/binding-darwin-x64@1.2.0-alpha.0": - version "1.2.0-alpha.0" - resolved "https://registry.yarnpkg.com/@rspack/binding-darwin-x64/-/binding-darwin-x64-1.2.0-alpha.0.tgz#b40778afa61292e543c812d9790e852c52145aef" - integrity sha512-ACwdgWg0V9j0o3gs1wvhqRJ4xui82L+Fii9Fa74az7P974iWO0ZHw4QIUaO5r434+v9OWMqpyBRN1M7cBrx3GA== - -"@rspack/binding-linux-arm64-gnu@1.2.0-alpha.0": - version "1.2.0-alpha.0" - resolved "https://registry.yarnpkg.com/@rspack/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.2.0-alpha.0.tgz#d9bdbc5835a7c69afc646c221a58ff7a0f0671fa" - integrity sha512-Ex9SviDikz9E36R4I5si/626FsYOJ35l1Lb+DCRUijjjsvoq4k8Shi8csyBfubR+JZ1M0uOXjJftu1Gm5z8Q0Q== - -"@rspack/binding-linux-arm64-musl@1.2.0-alpha.0": - version "1.2.0-alpha.0" - resolved "https://registry.yarnpkg.com/@rspack/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.2.0-alpha.0.tgz#e774394097e711a2791e29842d21a2e65730a335" - integrity sha512-U320xZmTcTwQ0BR8yIzE1L4olMCqzYkT3VFjXPR6iok/Mj0xjfk/SiKhLoZml473qQrHSGaFJ321cp02zgTFJg== - -"@rspack/binding-linux-x64-gnu@1.2.0-alpha.0": - version "1.2.0-alpha.0" - resolved "https://registry.yarnpkg.com/@rspack/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.2.0-alpha.0.tgz#8393f4c423403fe2d1958ed8a916f189676a6e47" - integrity sha512-GNur7VXJ29NtJhY8PYgv3Fv1Zxbx0XZhDUj/+7Wp40CAXRFsLgXScZIRh2U30TECYaihboZ7BD+xugv8MQPDoA== - -"@rspack/binding-linux-x64-musl@1.2.0-alpha.0": - version "1.2.0-alpha.0" - resolved "https://registry.yarnpkg.com/@rspack/binding-linux-x64-musl/-/binding-linux-x64-musl-1.2.0-alpha.0.tgz#5685699b5679dcbba47722ed8b278896247da777" - integrity sha512-0IdswzpG9+sgxvGu7KTwSeqfV0hvciaHMoZvGklfZa2txpcUqAg4ASp7uxrNaUo+G2a1fTUMOtP9351Cnl8DBg== - -"@rspack/binding-win32-arm64-msvc@1.2.0-alpha.0": - version "1.2.0-alpha.0" - resolved "https://registry.yarnpkg.com/@rspack/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.2.0-alpha.0.tgz#4af6243595e394ba6f5349c6ae7f7f6575256d55" - integrity sha512-FcFgoWGjSrCfJwDZY5bDA2aO02l5BP7qdyW6ehjwBiMxNZyeSbGvKz3jXl5TtTHR1IgdLzi9kEJkTPYLLMiE1A== - -"@rspack/binding-win32-ia32-msvc@1.2.0-alpha.0": - version "1.2.0-alpha.0" - resolved "https://registry.yarnpkg.com/@rspack/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-1.2.0-alpha.0.tgz#7761f5aa4eb7a7ff4e0874a3481ba38dcd8b1759" - integrity sha512-cZYFJw6DKCaPPz9VDJPndZ9KSp+/eedgt11Mv8OTpq+MJTUjB2HjtcjqJh8xxVcp3IuwvSMndTkC69WWt/4feA== - -"@rspack/binding-win32-x64-msvc@1.2.0-alpha.0": - version "1.2.0-alpha.0" - resolved "https://registry.yarnpkg.com/@rspack/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.2.0-alpha.0.tgz#c3ba42ed10bb6156b6cca59a6fb1512acad6f0fa" - integrity sha512-gfOqb/rq5716NV+Vbk5MteBhV4VhJeSoh2+dRQjdy4EN1wPZ+Uebs9ORVrT9uRjY3JrPn/5PkAHJXtgaOA9Uyg== - -"@rspack/binding@1.2.0-alpha.0": - version "1.2.0-alpha.0" - resolved "https://registry.npmjs.org/@rspack/binding/-/binding-1.2.0-alpha.0.tgz" - integrity sha512-rtmDScjtGUxv1zA1m3jXecuX2LsgNp4aWaAjOowHasoO1YqfHK0fMyprCiPowTjoHtpZ7Xt/tnMhii0GlGIITQ== + version "1.0.0-next.29" + resolved "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz" + integrity sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww== + +"@rspack/binding-darwin-arm64@1.7.11": + version "1.7.11" + resolved "https://registry.npmjs.org/@rspack/binding-darwin-arm64/-/binding-darwin-arm64-1.7.11.tgz" + integrity sha512-oduECiZVqbO5zlVw+q7Vy65sJFth99fWPTyucwvLJJtJkPL5n17Uiql2cYP6Ijn0pkqtf1SXgK8WjiKLG5bIig== + +"@rspack/binding-darwin-x64@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@rspack/binding-darwin-x64/-/binding-darwin-x64-1.7.11.tgz#5c724d91559d642d4a5e6aa4ed380c30bd0f64c0" + integrity sha512-a1+TtTE9ap6RalgFi7FGIgkJP6O4Vy6ctv+9WGJy53E4kuqHR0RygzaiVxCI/GMc/vBT9vY23hyrpWb3d1vtXA== + +"@rspack/binding-linux-arm64-gnu@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@rspack/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.7.11.tgz#429119939bbe9d51a72caf99cffb8febe0f870fe" + integrity sha512-P0QrGRPbTWu6RKWfN0bDtbnEps3rXH0MWIMreZABoUrVmNQKtXR6e73J3ub6a+di5s2+K0M2LJ9Bh2/H4UsDUA== + +"@rspack/binding-linux-arm64-musl@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@rspack/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.7.11.tgz#d939b8c2c5bf35380d3c860402f7063031ef469a" + integrity sha512-6ky7R43VMjWwmx3Yx7Jl7faLBBMAgMDt+/bN35RgwjiPgsIByz65EwytUVuW9rikB43BGHvA/eqlnjLrUzNBqw== + +"@rspack/binding-linux-x64-gnu@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@rspack/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.7.11.tgz#03567317a7e8cfc62d994dcf9683f932fd22054a" + integrity sha512-cuOJMfCOvb2Wgsry5enXJ3iT1FGUjdPqtGUBVupQlEG4ntSYsQ2PtF4wIDVasR3wdxC5nQbipOrDiN/u6fYsdQ== + +"@rspack/binding-linux-x64-musl@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@rspack/binding-linux-x64-musl/-/binding-linux-x64-musl-1.7.11.tgz#d93c93ea796eae1572b2353a50d58cc6218c53b6" + integrity sha512-CoK37hva4AmHGh3VCsQXmGr40L36m1/AdnN5LEjUX6kx5rEH7/1nEBN6Ii72pejqDVvk9anEROmPDiPw10tpFg== + +"@rspack/binding-wasm32-wasi@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@rspack/binding-wasm32-wasi/-/binding-wasm32-wasi-1.7.11.tgz#c90235032fb14de50baf535592069923c1308f4e" + integrity sha512-OtrmnPUVJMxjNa3eDMfHyPdtlLRmmp/aIm0fQHlAOATbZvlGm12q7rhPW5BXTu1yh+1rQ1/uqvz+SzKEZXuJaQ== + dependencies: + "@napi-rs/wasm-runtime" "1.0.7" + +"@rspack/binding-win32-arm64-msvc@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@rspack/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.7.11.tgz#0afcfde6a77cdf6fa6a85de4f8a39b94a593aab2" + integrity sha512-lObFW6e5lCWNgTBNwT//yiEDbsxm9QG4BYUojqeXxothuzJ/L6ibXz6+gLMvbOvLGV3nKgkXmx8GvT9WDKR0mA== + +"@rspack/binding-win32-ia32-msvc@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@rspack/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-1.7.11.tgz#46606834538e84cd0f95f19089695ab122d69586" + integrity sha512-0pYGnZd8PPqNR68zQ8skamqNAXEA1sUfXuAdYcknIIRq2wsbiwFzIc0Pov1cIfHYab37G7sSIPBiOUdOWF5Ivw== + +"@rspack/binding-win32-x64-msvc@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@rspack/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.7.11.tgz#e486a33fc1227ec9cbd70439ef1b32ead1faec68" + integrity sha512-EeQXayoQk/uBkI3pdoXfQBXNIUrADq56L3s/DFyM2pJeUDrWmhfIw2UFIGkYPTMSCo8F2JcdcGM32FGJrSnU0Q== + +"@rspack/binding@1.7.11": + version "1.7.11" + resolved "https://registry.npmjs.org/@rspack/binding/-/binding-1.7.11.tgz" + integrity sha512-2MGdy2s2HimsDT444Bp5XnALzNRxuBNc7y0JzyuqKbHBywd4x2NeXyhWXXoxufaCFu5PBc9Qq9jyfjW2Aeh06Q== optionalDependencies: - "@rspack/binding-darwin-arm64" "1.2.0-alpha.0" - "@rspack/binding-darwin-x64" "1.2.0-alpha.0" - "@rspack/binding-linux-arm64-gnu" "1.2.0-alpha.0" - "@rspack/binding-linux-arm64-musl" "1.2.0-alpha.0" - "@rspack/binding-linux-x64-gnu" "1.2.0-alpha.0" - "@rspack/binding-linux-x64-musl" "1.2.0-alpha.0" - "@rspack/binding-win32-arm64-msvc" "1.2.0-alpha.0" - "@rspack/binding-win32-ia32-msvc" "1.2.0-alpha.0" - "@rspack/binding-win32-x64-msvc" "1.2.0-alpha.0" - -"@rspack/core@1.2.0-alpha.0": - version "1.2.0-alpha.0" - resolved "https://registry.npmjs.org/@rspack/core/-/core-1.2.0-alpha.0.tgz" - integrity sha512-YiD0vFDj+PfHs3ZqJwPNhTYyVTb4xR6FpOI5WJ4jJHV4lgdErS+RChTCPhf1xeqxfuTSSnFA7UeqosLhBuNSqQ== - dependencies: - "@module-federation/runtime-tools" "0.8.4" - "@rspack/binding" "1.2.0-alpha.0" - "@rspack/lite-tapable" "1.0.1" - caniuse-lite "^1.0.30001616" - -"@rspack/lite-tapable@1.0.1": - version "1.0.1" - resolved "https://registry.npmjs.org/@rspack/lite-tapable/-/lite-tapable-1.0.1.tgz" - integrity sha512-VynGOEsVw2s8TAlLf/uESfrgfrq2+rcXB1muPJYBWbsm1Oa6r5qVQhjA5ggM6z/coYPrsVMgovl3Ff7Q7OCp1w== + "@rspack/binding-darwin-arm64" "1.7.11" + "@rspack/binding-darwin-x64" "1.7.11" + "@rspack/binding-linux-arm64-gnu" "1.7.11" + "@rspack/binding-linux-arm64-musl" "1.7.11" + "@rspack/binding-linux-x64-gnu" "1.7.11" + "@rspack/binding-linux-x64-musl" "1.7.11" + "@rspack/binding-wasm32-wasi" "1.7.11" + "@rspack/binding-win32-arm64-msvc" "1.7.11" + "@rspack/binding-win32-ia32-msvc" "1.7.11" + "@rspack/binding-win32-x64-msvc" "1.7.11" + +"@rspack/core@^1.7.10": + version "1.7.11" + resolved "https://registry.npmjs.org/@rspack/core/-/core-1.7.11.tgz" + integrity sha512-rsD9b+Khmot5DwCMiB3cqTQo53ioPG3M/A7BySu8+0+RS7GCxKm+Z+mtsjtG/vsu4Tn2tcqCdZtA3pgLoJB+ew== + dependencies: + "@module-federation/runtime-tools" "0.22.0" + "@rspack/binding" "1.7.11" + "@rspack/lite-tapable" "1.1.0" + +"@rspack/lite-tapable@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@rspack/lite-tapable/-/lite-tapable-1.1.0.tgz" + integrity sha512-E2B0JhYFmVAwdDiG14+DW0Di4Ze4Jg10Pc4/lILUrd5DRCaklduz2OvJ5HYQ6G+hd+WTzqQb3QnDNfK4yvAFYw== "@sideway/address@^4.1.5": version "4.1.5" @@ -3793,9 +4211,9 @@ integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== "@sinclair/typebox@^0.27.8": - version "0.27.8" - resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz" - integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== + version "0.27.10" + resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.10.tgz" + integrity sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA== "@sindresorhus/is@^0.14.0": version "0.14.0" @@ -3828,19 +4246,19 @@ "@slack/logger@^3.0.0": version "3.0.0" - resolved "https://registry.yarnpkg.com/@slack/logger/-/logger-3.0.0.tgz#b736d4e1c112c22a10ffab0c2d364620aedcb714" + resolved "https://registry.npmjs.org/@slack/logger/-/logger-3.0.0.tgz" integrity sha512-DTuBFbqu4gGfajREEMrkq5jBhcnskinhr4+AnfJEk48zhVeEv3XnUKGIX98B74kxhYsIMfApGGySTn7V3b5yBA== dependencies: "@types/node" ">=12.0.0" "@slack/types@^2.11.0": version "2.21.1" - resolved "https://registry.yarnpkg.com/@slack/types/-/types-2.21.1.tgz#d49105b97f372640af050bec6e84b5b2f29a21e5" + resolved "https://registry.npmjs.org/@slack/types/-/types-2.21.1.tgz" integrity sha512-I8vmSjNYWsaxuWPx6dz4yeh0h7vRBWbgAMK14LEmblbZ404BtrPbXs6jDPx4cYgGf8msDGF4A9opLZBu21FViQ== "@slack/web-api@^6.7.1": version "6.13.0" - resolved "https://registry.yarnpkg.com/@slack/web-api/-/web-api-6.13.0.tgz#3df65a9b7b0cef5d7bbd6860a0741ce6b8091b9b" + resolved "https://registry.npmjs.org/@slack/web-api/-/web-api-6.13.0.tgz" integrity sha512-dv65crIgdh9ZYHrevLU6XFHTQwTyDmNqEqzuIrV+Vqe/vgiG6w37oex5ePDU1RGm2IJ90H8iOvHFvzdEO/vB+g== dependencies: "@slack/logger" "^3.0.0" @@ -3875,7 +4293,7 @@ "@so-ric/colorspace@^1.1.6": version "1.1.6" - resolved "https://registry.yarnpkg.com/@so-ric/colorspace/-/colorspace-1.1.6.tgz#62515d8b9f27746b76950a83bde1af812d91923b" + resolved "https://registry.npmjs.org/@so-ric/colorspace/-/colorspace-1.1.6.tgz" integrity sha512-/KiKkpHNOBgkFJwu9sh48LkHSMYGyuTcSFK/qMBdnOAlrRJzRSXAOFB5qwzaVQuDl8wAvHVMkaASQDReTahxuw== dependencies: color "^5.0.2" @@ -3896,26 +4314,26 @@ resolved "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz" integrity sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ== -"@svgr/babel-plugin-remove-jsx-attribute@*", "@svgr/babel-plugin-remove-jsx-attribute@8.0.0": - version "8.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz" - integrity sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA== - -"@svgr/babel-plugin-remove-jsx-attribute@^5.4.0": +"@svgr/babel-plugin-remove-jsx-attribute@*", "@svgr/babel-plugin-remove-jsx-attribute@^5.4.0": version "5.4.0" resolved "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz" integrity sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg== -"@svgr/babel-plugin-remove-jsx-empty-expression@*", "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0": +"@svgr/babel-plugin-remove-jsx-attribute@8.0.0": version "8.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz" - integrity sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA== + resolved "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz" + integrity sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA== -"@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1": +"@svgr/babel-plugin-remove-jsx-empty-expression@*", "@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1": version "5.0.1" resolved "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz" integrity sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA== +"@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0": + version "8.0.0" + resolved "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz" + integrity sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA== + "@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0": version "8.0.0" resolved "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz" @@ -4186,152 +4604,176 @@ "@svgr/plugin-jsx" "8.1.0" "@svgr/plugin-svgo" "8.1.0" -"@swc/core-darwin-arm64@1.8.0": - version "1.8.0" - resolved "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.8.0.tgz" - integrity sha512-TIus1/SE/Ud4g84hCnchcagu+LfyndSDy5r5qf64nflojejDidPU9Fp1InzQhQpEgIpntnZID/KFCP5rQnvsIw== - -"@swc/core-darwin-x64@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.8.0.tgz#ff06624452ee9081735671f5bed93fb776c5524e" - integrity sha512-yCb1FHCX/HUmNRGB1X3CFJ1WPKXMosZVUe3K2TrosCGvytwgaLoW5FS0bZg5Qv6cEUERQBg75cJnOUPwLLRCVg== - -"@swc/core-linux-arm-gnueabihf@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.8.0.tgz#2c093ff8733fbc10804e3fe74ddb1252740ad0d3" - integrity sha512-6TdjVdiLaSW+eGiHKEojMDlx673nowrPHa6nM6toWgRzy8tIZgjPOguVKJDoMnoHuvO7SkOLCUiMRw0rTskypA== - -"@swc/core-linux-arm64-gnu@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.8.0.tgz#70e0772a29be00b80e381a528262b1a846a47a1b" - integrity sha512-TU2YcTornnyZiJUabRuk7Xtvzaep11FwK77IkFomjN9/Os5s25B8ea652c2fAQMe9RsM84FPVmX303ohxavjKQ== - -"@swc/core-linux-arm64-musl@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.8.0.tgz#651647747f820f4667ad926c965b396bb82122fa" - integrity sha512-2CdPTEKxx2hJIj/B0fn8L8k2coo/FDS95smzXyi2bov5FcrP6Ohboq8roFBYgj38fkHusXjY8qt+cCH7yXWAdg== - -"@swc/core-linux-x64-gnu@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.8.0.tgz#745a3113bc48ee867631a77bb239ec598a2fc8f2" - integrity sha512-14StQBifCs/AMsySdU95OmwNJr9LOVqo6rcTFt2b7XaWpe/AyeuMJFxcndLgUewksJHpfepzCTwNdbcYmuNo6A== - -"@swc/core-linux-x64-musl@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.8.0.tgz#547c8176971cd1c3746d9d5feda3bacf2f95074a" - integrity sha512-qemJnAQlYqKCfWNqVv5SG8uGvw8JotwU86cuFUkq35oTB+dsSFM3b83+B1giGTKKFOh2nfWT7bvPXTKk+aUjew== - -"@swc/core-win32-arm64-msvc@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.8.0.tgz#363340f0fcb0d9e7b9e6d4167171ae64be0a114d" - integrity sha512-fXt5vZbnrVdXZzGj2qRnZtY3uh+NtLCaFjS2uD9w8ssdbjhbDZYlJCj2JINOjv35ttEfAD2goiYmVa5P/Ypl+g== - -"@swc/core-win32-ia32-msvc@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.8.0.tgz#95ce2aecbe794e6357214b44bac6d5d1ad296bcc" - integrity sha512-W4FA2vSJ+bGYiTj6gspxghSdKQNLfLMo65AH07u797x7I+YJj8amnFY/fQRlroDv5Dez/FHTv14oPlTlNFUpIw== - -"@swc/core-win32-x64-msvc@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.8.0.tgz#2b31cb9db381d6863727190bb4b1a7be7ce78ce8" - integrity sha512-Il4y8XwKDV0Bnk0IpA00kGcSQC6I9XOIinW5egTutnwIDfDE+qsD0j+0isW5H76GetY3/Ze0lVxeOXLAUgpegA== +"@swc/core-darwin-arm64@1.15.33": + version "1.15.33" + resolved "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.15.33.tgz" + integrity sha512-N+L0uXhuO7FIfzqwgxmzv0zIpV0qEp8wPX3QQs2p4atjMoywup2JTeDlXPw+z9pWJGCae3JjM+tZ6myclI+2gA== + +"@swc/core-darwin-x64@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.15.33.tgz#0badb9834071f1c6005986571d4a96359c1d7cd0" + integrity sha512-/Il4QHSOhV4FekbsDtkrNmKbsX26oSysvgrRswa/RYOHXAkwXDbB4jaeKq6PsJLSPkzJ2KzQ061gtBnk0vNHfA== + +"@swc/core-linux-arm-gnueabihf@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.33.tgz#b7577a825b59d98b6a9a5c991d842046efe1c34a" + integrity sha512-C64hBnBxq4viOPQ8hlx+2lJ23bzZBGnjw7ryALmS+0Q3zHmwO8lw1/DArLENw4Q18/0w5wdEO1k3m1wWNtKGqQ== + +"@swc/core-linux-arm64-gnu@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.33.tgz#304c48321494a18c67b2913c273b08674ee70d8c" + integrity sha512-TRJfnJbX3jqpxRDRoieMzRiCBS5jOmXNb3iQXmcgjFEHKLnAgK1RZRU8Cq1MsPqO4jAJp/ld1G4O3fXuxv85uw== + +"@swc/core-linux-arm64-musl@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.33.tgz#d116cbc04ccb4f4ee810da6bca79d4423605dbcd" + integrity sha512-il7tYM+CpUNzieQbwAjFT1P8zqAhmGWNAGhQZBnxurXZ0aNn+5nqYFTEUKNZl7QibtT0uQXzTZrNGHCIj6Y1Og== + +"@swc/core-linux-ppc64-gnu@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/core-linux-ppc64-gnu/-/core-linux-ppc64-gnu-1.15.33.tgz#f5354dba36db9414305bab344c817d57b8b457c2" + integrity sha512-ZtNBwN0Z7CFj9Il0FcPaKdjgP7URyKu/3RfH46vq+0paOBqLj4NYldD6Qo//Duif/7IOtAraUfDOmp0PLAufog== + +"@swc/core-linux-s390x-gnu@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/core-linux-s390x-gnu/-/core-linux-s390x-gnu-1.15.33.tgz#016df9f4c9d7fd65b85ca9c558c5aec341f06da0" + integrity sha512-De1IyajoOmhOYYjw/lx66bKlyDpHZTueqwpDrWgf5O7T6d1ODeJJO9/OqMBmrBQc5C+dNnlmIufHsp4QVCWufA== + +"@swc/core-linux-x64-gnu@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.15.33.tgz#49f36558ede072e71999aa37f123367daed2a662" + integrity sha512-mGTH0YxmUN+x6vRN/I6NOk5X0ogNktkwPnJ94IMvR7QjhRDwL0O8RXEDhyUM0YtwWrryBOqaJQBX4zruxEPRGw== + +"@swc/core-linux-x64-musl@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.15.33.tgz#b096665f5cfeee2612325f301da5c1590b10d8f3" + integrity sha512-hj628ZkSEJf6zMf5VMbYrG2O6QqyTIp2qwY6VlCjvIa9lAEZ5c2lfPblCLVGYubTeLJDxadLB/CxqQYOQABeEQ== + +"@swc/core-win32-arm64-msvc@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.33.tgz#f3101263a0dbaa173ec47638c9719d0b89838bd2" + integrity sha512-GV2oohtN2/5+KSccl86VULu3aT+LrISC8uzgSq0FRnikpD+Zwc+sBlXmoKQ+Db6jI57ITUOIB8jRkdGMABC29g== + +"@swc/core-win32-ia32-msvc@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.33.tgz#eb981ef5613d42c9220559bdb0c8bc58cf6c3eb9" + integrity sha512-gtyvzSNR8DHKfFEA2uqb8Ld1myqi6uEg2jyeUq3ikn5ytYs7H8RpZYC8mdy4NXr8hfcdJfCLXPlYaqqfBXpoEQ== + +"@swc/core-win32-x64-msvc@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.33.tgz#a2fed9956933027ceb368857bac4bb4ee203d47c" + integrity sha512-d6fRqQSkJI+kmMEBWaDQ7TMl8+YjLYbwRUPZQ9DY0ORBJeTzOrG0twvfvlZ2xgw6jA0ScQKgfBm4vHLSLl5Hqg== "@swc/core@^1.7.39": - version "1.8.0" - resolved "https://registry.npmjs.org/@swc/core/-/core-1.8.0.tgz" - integrity sha512-EF8C5lp1RKMp3426tAKwQyVbg4Zcn/2FDax3cz8EcOXYQJM/ctB687IvBm9Ciej1wMcQ/dMRg+OB4Xl8BGLBoA== + version "1.15.33" + resolved "https://registry.npmjs.org/@swc/core/-/core-1.15.33.tgz" + integrity sha512-jOlwnFV2xhuuZeAUILGFULeR6vDPfijEJ57evfocwznQldLU3w2cZ9bSDryY9ip+AsM3r1NJKzf47V2NXebkeQ== dependencies: "@swc/counter" "^0.1.3" - "@swc/types" "^0.1.14" + "@swc/types" "^0.1.26" optionalDependencies: - "@swc/core-darwin-arm64" "1.8.0" - "@swc/core-darwin-x64" "1.8.0" - "@swc/core-linux-arm-gnueabihf" "1.8.0" - "@swc/core-linux-arm64-gnu" "1.8.0" - "@swc/core-linux-arm64-musl" "1.8.0" - "@swc/core-linux-x64-gnu" "1.8.0" - "@swc/core-linux-x64-musl" "1.8.0" - "@swc/core-win32-arm64-msvc" "1.8.0" - "@swc/core-win32-ia32-msvc" "1.8.0" - "@swc/core-win32-x64-msvc" "1.8.0" + "@swc/core-darwin-arm64" "1.15.33" + "@swc/core-darwin-x64" "1.15.33" + "@swc/core-linux-arm-gnueabihf" "1.15.33" + "@swc/core-linux-arm64-gnu" "1.15.33" + "@swc/core-linux-arm64-musl" "1.15.33" + "@swc/core-linux-ppc64-gnu" "1.15.33" + "@swc/core-linux-s390x-gnu" "1.15.33" + "@swc/core-linux-x64-gnu" "1.15.33" + "@swc/core-linux-x64-musl" "1.15.33" + "@swc/core-win32-arm64-msvc" "1.15.33" + "@swc/core-win32-ia32-msvc" "1.15.33" + "@swc/core-win32-x64-msvc" "1.15.33" "@swc/counter@^0.1.3": version "0.1.3" resolved "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz" integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ== -"@swc/html-darwin-arm64@1.8.0": - version "1.8.0" - resolved "https://registry.npmjs.org/@swc/html-darwin-arm64/-/html-darwin-arm64-1.8.0.tgz" - integrity sha512-J2idsDLZjsuzExyyCiS1xutpgkHI/8TTPlUfr54jipF0VNGWTa85zBw/pLkNPnU5pInZweV87rj4dY/rekNXAA== - -"@swc/html-darwin-x64@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/html-darwin-x64/-/html-darwin-x64-1.8.0.tgz#29754b2ac45459f07e36073672e9042f82a51e37" - integrity sha512-lTwC/j9ahtqwQxTFiiCcTrXt2a9DhxRD/CBSZv7193VX3tDT9bil1hlyJcjd7ps6YETszoJmL1Bz83XEvkQ2dA== - -"@swc/html-linux-arm-gnueabihf@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/html-linux-arm-gnueabihf/-/html-linux-arm-gnueabihf-1.8.0.tgz#35fa92bf7432eda3e725dfd87f78b6464b5f094e" - integrity sha512-W0uDzlhaIjp4GZc261ZfTQR3URoB30/hGc0krb2O9Ef9H0gR3/qF4tmVsca4LmYlxKQjJ1j9ziYjRYtCvU+IYQ== - -"@swc/html-linux-arm64-gnu@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/html-linux-arm64-gnu/-/html-linux-arm64-gnu-1.8.0.tgz#fdf35960e48ab52cd24e431d0d73c1f83f06a8cd" - integrity sha512-jr2Fd0gGPNZudspZQRSUqKikeAZ9VCWB+w5LwEEZ1NuQMyyXxXnEporS9AqfQc5FPdgDbOOE2ct5iU4bmv8ENQ== - -"@swc/html-linux-arm64-musl@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/html-linux-arm64-musl/-/html-linux-arm64-musl-1.8.0.tgz#1c262c38d129655fd90234ca15447837ab58253f" - integrity sha512-MVdXyF4QZtVM2RpoSbpKTyn4NHYQmmoj+hbIgqEnce+UH/+lly/xyqtObOcZ05a/UKOx93lL9e8zY48tSRNAsg== - -"@swc/html-linux-x64-gnu@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/html-linux-x64-gnu/-/html-linux-x64-gnu-1.8.0.tgz#c9a95048b1b58f141fa124d1d3c65954556304ed" - integrity sha512-+RhgpJSqLDBySQClmPb1esdHvylyNPmUDZSCbxW2UB2X1PyJk+a6u9c6T4bacpGj+kSYxWJTpm8NUMP5O8TJlQ== - -"@swc/html-linux-x64-musl@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/html-linux-x64-musl/-/html-linux-x64-musl-1.8.0.tgz#802abfc79cda6774c8abea8cc3aec8de0ebabacd" - integrity sha512-IwQ9PwroFUtMiRbul1EVgYKvt7f8fV6IcG2dXypf4nT88WSR4EBGIdHglbt1CvkfN1kV+Fd3XlyZ8HTlqqmcxg== - -"@swc/html-win32-arm64-msvc@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/html-win32-arm64-msvc/-/html-win32-arm64-msvc-1.8.0.tgz#cba1bdb571f2322dafea67cb0b3d11928540365f" - integrity sha512-WYl9exCDEVB5zFAewjDMs+Fkjv1uwY2uh3qu5KqVe6A60g0SDZxut1K3yCEt4fm6cGU/0cmpHVngenl8A87jZw== - -"@swc/html-win32-ia32-msvc@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/html-win32-ia32-msvc/-/html-win32-ia32-msvc-1.8.0.tgz#7191d4a21d18d339b853274589b7a1a2268459a8" - integrity sha512-Ul+wT7GiwK/rztQicJy4luhM0Vx3r2YafT7UaSVDYZ/dI2+RH6et+rDPsfnYU+M9j9cKPrOdNkb8lu8NATfooA== - -"@swc/html-win32-x64-msvc@1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@swc/html-win32-x64-msvc/-/html-win32-x64-msvc-1.8.0.tgz#e77ee7c11300833c8a674af975525a75f82e9edf" - integrity sha512-+7dUidfNeVC45BB1B4AeZ060C9pcbYRv+6HmcYcNaAaHCabjIuaLduAirPNfMAxCwcGG8v3q3sIVI257gDVUmQ== - -"@swc/html@^1.7.39": - version "1.8.0" - resolved "https://registry.npmjs.org/@swc/html/-/html-1.8.0.tgz" - integrity sha512-BpfcNylJCIxnV3h8jjuBWlY05JJ3luPskiDgRMljyiQUW7Ll0vZp8J6Jizyrgrsud6XTq4q88RMWGJoWQQiiTw== +"@swc/html-darwin-arm64@1.15.33": + version "1.15.33" + resolved "https://registry.npmjs.org/@swc/html-darwin-arm64/-/html-darwin-arm64-1.15.33.tgz" + integrity sha512-zyO6uMBfLyCh55wundAxKX+8P/f98ecuyir4VX6nTmn6y7x37ndB8f01LUrd9Tiq6eEAvDXLiqEUvuGjEc7Pmg== + +"@swc/html-darwin-x64@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/html-darwin-x64/-/html-darwin-x64-1.15.33.tgz#a5fe565500a77b5dce30d35dd7473fe72a459c40" + integrity sha512-MaGunsY/J5l7Rb5OmoztEWh+ikooydT7nWkjiDovj7UfkB9HLk5sLr9O7ZdNGJ2u9dD6FX89SzMdA0Psm9NJrQ== + +"@swc/html-linux-arm-gnueabihf@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/html-linux-arm-gnueabihf/-/html-linux-arm-gnueabihf-1.15.33.tgz#600f84c0c15bb79466fa1fbed403606b1046812e" + integrity sha512-CrbUDjVl6/hQ1C5KPMiK4vxk/eOMjxkVELqwnOxsZ+aFVTv3L3YrGMaJ5H47vvIihkPhqiSOUPmMEFqxvqKmXg== + +"@swc/html-linux-arm64-gnu@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/html-linux-arm64-gnu/-/html-linux-arm64-gnu-1.15.33.tgz#281a2511fd2942a4abe79a82f846fb622f5f7add" + integrity sha512-7tZ0IgmUslI9Extu/TpxJS0GjJoDx0j9zeq2cIidPdM/njSBpyRB7n4B292Q5WFVh7PcZl7WXqqqMczibQ27aA== + +"@swc/html-linux-arm64-musl@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/html-linux-arm64-musl/-/html-linux-arm64-musl-1.15.33.tgz#85d6abd6aaf54886a0d7c96f5d6b947c7ac55698" + integrity sha512-gYi2ainYZV2z+jwjp9UKuPVOf3c5q+NkH3QRDjqDrIPLagqDsYNjobi8p5oajGcPGFLNTcVw08VTcubJGChReA== + +"@swc/html-linux-ppc64-gnu@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/html-linux-ppc64-gnu/-/html-linux-ppc64-gnu-1.15.33.tgz#fcbe4c28ae85117663dea8d6c3c2a6cadda17ae4" + integrity sha512-6CfzyVQSdD8ezFdxFve4J/b6qTgXIwYFWEvSdaJvXSgwTy976uUV5Ff1LOF86mt2zWMhZJX9DqmkGyIhepbyWw== + +"@swc/html-linux-s390x-gnu@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/html-linux-s390x-gnu/-/html-linux-s390x-gnu-1.15.33.tgz#aa0202bbafff1f92c08c8ff4ad73acab0996d3fe" + integrity sha512-Msx1eniw95lhMHUSe3D5FXweKHtkHtzJLsHJDj920uL4Dm7UHqzwaCuZdCmzbkHnO96YjjQvAm266djg8wupmQ== + +"@swc/html-linux-x64-gnu@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/html-linux-x64-gnu/-/html-linux-x64-gnu-1.15.33.tgz#d67fe9e576aa7e86ca48a1a916ba28a8f6143702" + integrity sha512-JDNb4Uq+7g+23QuOtwWnP0/EqztWIHFFdQdeBIS5zx83YBG2dYRMdPAjnHJWh2YRZxdepd8q6S9MUIxpSrouAg== + +"@swc/html-linux-x64-musl@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/html-linux-x64-musl/-/html-linux-x64-musl-1.15.33.tgz#ba22ea26670bc6f63f1c8f31e9b2f1e70dbe5404" + integrity sha512-NSpZdbz4dj0pu1A0Z9l68Bll5HAzEMtBAeMe6jc4GEVfpIw6eeafQHm2/yMUEh09tgl8t9LzM9DycfdTZDjM4g== + +"@swc/html-win32-arm64-msvc@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/html-win32-arm64-msvc/-/html-win32-arm64-msvc-1.15.33.tgz#5fdbe3e27d5a49f98b0d877701728c237efc90de" + integrity sha512-w7iho3/zS3lCDqgUZMDLMBO0ElX7j+KgvMb8BOrKqLDOSTDDj3lY/BClNJ7vBpAliI2kPQs/mUikdZyzi4MBjQ== + +"@swc/html-win32-ia32-msvc@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/html-win32-ia32-msvc/-/html-win32-ia32-msvc-1.15.33.tgz#32a9f7fc740722fb3852044cad04e9ec0241fd4e" + integrity sha512-6hJ2pBweSfZ38trYHXmzTBDpRNvqJgFl2PkIWdy4IXbV/Fv0v9Dqe0t9Gi2ZVEBpgI7PD6pF42AT4HmrNTVFyQ== + +"@swc/html-win32-x64-msvc@1.15.33": + version "1.15.33" + resolved "https://registry.yarnpkg.com/@swc/html-win32-x64-msvc/-/html-win32-x64-msvc-1.15.33.tgz#36f063f02018a64b417dad020c15232a8ffaab6c" + integrity sha512-eaY/vNE7rkPKluJYjhOiQOA1tto5VbJOoD1C1xFTBmr9t7WsqYUfbQhYQy5A26/z83NNgtDwELM85rkMB+/vWA== + +"@swc/html@^1.13.5": + version "1.15.33" + resolved "https://registry.npmjs.org/@swc/html/-/html-1.15.33.tgz" + integrity sha512-PZIfmj5zYpAJ2eMptf0My2q9Bl8bkraW28+FD1pRnxOiYMrKrP5vL2tB2PdxMRjS0ziLFVM5HEuGFw8PxEDOaw== dependencies: "@swc/counter" "^0.1.3" optionalDependencies: - "@swc/html-darwin-arm64" "1.8.0" - "@swc/html-darwin-x64" "1.8.0" - "@swc/html-linux-arm-gnueabihf" "1.8.0" - "@swc/html-linux-arm64-gnu" "1.8.0" - "@swc/html-linux-arm64-musl" "1.8.0" - "@swc/html-linux-x64-gnu" "1.8.0" - "@swc/html-linux-x64-musl" "1.8.0" - "@swc/html-win32-arm64-msvc" "1.8.0" - "@swc/html-win32-ia32-msvc" "1.8.0" - "@swc/html-win32-x64-msvc" "1.8.0" - -"@swc/types@^0.1.14": - version "0.1.14" - resolved "https://registry.npmjs.org/@swc/types/-/types-0.1.14.tgz" - integrity sha512-PbSmTiYCN+GMrvfjrMo9bdY+f2COnwbdnoMw7rqU/PI5jXpKjxOGZ0qqZCImxnT81NkNsKnmEpvu+hRXLBeCJg== + "@swc/html-darwin-arm64" "1.15.33" + "@swc/html-darwin-x64" "1.15.33" + "@swc/html-linux-arm-gnueabihf" "1.15.33" + "@swc/html-linux-arm64-gnu" "1.15.33" + "@swc/html-linux-arm64-musl" "1.15.33" + "@swc/html-linux-ppc64-gnu" "1.15.33" + "@swc/html-linux-s390x-gnu" "1.15.33" + "@swc/html-linux-x64-gnu" "1.15.33" + "@swc/html-linux-x64-musl" "1.15.33" + "@swc/html-win32-arm64-msvc" "1.15.33" + "@swc/html-win32-ia32-msvc" "1.15.33" + "@swc/html-win32-x64-msvc" "1.15.33" + +"@swc/types@^0.1.26": + version "0.1.26" + resolved "https://registry.npmjs.org/@swc/types/-/types-0.1.26.tgz" + integrity sha512-lyMwd7WGgG79RS7EERZV3T8wMdmPq3xwyg+1nmAM64kIhx5yl+juO2PYIHb7vTiPgPCj8LYjsNV2T5wiQHUEaw== dependencies: "@swc/counter" "^0.1.3" @@ -4354,15 +4796,10 @@ resolved "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz" integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== -"@trysound/sax@0.2.0": - version "0.2.0" - resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz" - integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== - "@tsconfig/node10@^1.0.7": - version "1.0.11" - resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz" - integrity sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw== + version "1.0.12" + resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.12.tgz" + integrity sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ== "@tsconfig/node12@^1.0.7": version "1.0.11" @@ -4389,12 +4826,12 @@ "@docusaurus/utils-validation" "2.0.0-beta.21" tslib "^2.4.0" -"@types/acorn@^4.0.0": - version "4.0.6" - resolved "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz" - integrity sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ== +"@tybys/wasm-util@^0.10.1": + version "0.10.2" + resolved "https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.2.tgz#12b3a1b33db1f9cad4ddff1f604ab7dd00bf464e" + integrity sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg== dependencies: - "@types/estree" "*" + tslib "^2.4.0" "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": version "7.20.5" @@ -4408,9 +4845,9 @@ "@types/babel__traverse" "*" "@types/babel__generator@*": - version "7.6.8" - resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz" - integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== + version "7.27.0" + resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz" + integrity sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg== dependencies: "@babel/types" "^7.0.0" @@ -4423,21 +4860,21 @@ "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": - version "7.20.6" - resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz" - integrity sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg== + version "7.28.0" + resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz" + integrity sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q== dependencies: - "@babel/types" "^7.20.7" + "@babel/types" "^7.28.2" "@types/body-parser@*": - version "1.19.5" - resolved "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz" - integrity sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg== + version "1.19.6" + resolved "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz" + integrity sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g== dependencies: "@types/connect" "*" "@types/node" "*" -"@types/bonjour@^3.5.9": +"@types/bonjour@^3.5.13", "@types/bonjour@^3.5.9": version "3.5.13" resolved "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz" integrity sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ== @@ -4446,10 +4883,15 @@ "@types/btoa-lite@^1.0.0": version "1.0.2" - resolved "https://registry.yarnpkg.com/@types/btoa-lite/-/btoa-lite-1.0.2.tgz#82bb6aab00abf7cff3ca2825abe010c0cd536ae5" + resolved "https://registry.npmjs.org/@types/btoa-lite/-/btoa-lite-1.0.2.tgz" integrity sha512-ZYbcE2x7yrvNFJiU7xJGrpF/ihpkM7zKgw8bha3LNJSesvTtUNxbpzaT7WXBIryf6jovisrxTBvymxMeLLj1Mg== -"@types/connect-history-api-fallback@^1.3.5": +"@types/config@^3.3.5": + version "3.3.5" + resolved "https://registry.npmjs.org/@types/config/-/config-3.3.5.tgz" + integrity sha512-itq2HtXQBrNUKwMNZnb9mBRE3T99VYCdl1gjST9rq+9kFaB1iMMGuDeZnP88qid73DnpAMKH9ZolqDpS1Lz7+w== + +"@types/connect-history-api-fallback@^1.3.5", "@types/connect-history-api-fallback@^1.5.4": version "1.5.4" resolved "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz" integrity sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw== @@ -4465,9 +4907,9 @@ "@types/node" "*" "@types/d3-array@*": - version "3.2.1" - resolved "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz" - integrity sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg== + version "3.2.2" + resolved "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz" + integrity sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw== "@types/d3-axis@*": version "3.0.6" @@ -4507,9 +4949,9 @@ integrity sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw== "@types/d3-dispatch@*": - version "3.0.6" - resolved "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.6.tgz" - integrity sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ== + version "3.0.7" + resolved "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.7.tgz" + integrity sha512-5o9OIAdKkhN1QItV2oqaE5KMIiXAvDWBDPrD85e58Qlz1c1kI/J0NcqbEG88CoTwJrYe7ntUCVfeUl2UJKbWgA== "@types/d3-drag@*": version "3.0.7" @@ -4565,9 +5007,9 @@ "@types/d3-color" "*" "@types/d3-path@*": - version "3.1.0" - resolved "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz" - integrity sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ== + version "3.1.1" + resolved "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz" + integrity sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg== "@types/d3-polygon@*": version "3.0.2" @@ -4585,14 +5027,14 @@ integrity sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ== "@types/d3-scale-chromatic@*": - version "3.0.3" - resolved "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.3.tgz" - integrity sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw== + version "3.1.0" + resolved "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz" + integrity sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ== "@types/d3-scale@*": - version "4.0.8" - resolved "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz" - integrity sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ== + version "4.0.9" + resolved "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz" + integrity sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw== dependencies: "@types/d3-time" "*" @@ -4602,9 +5044,9 @@ integrity sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w== "@types/d3-shape@*": - version "3.1.6" - resolved "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz" - integrity sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA== + version "3.1.8" + resolved "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.8.tgz" + integrity sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w== dependencies: "@types/d3-path" "*" @@ -4614,9 +5056,9 @@ integrity sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg== "@types/d3-time@*": - version "3.0.3" - resolved "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz" - integrity sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw== + version "3.0.4" + resolved "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz" + integrity sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g== "@types/d3-timer@*": version "3.0.2" @@ -4675,19 +5117,12 @@ "@types/d3-zoom" "*" "@types/debug@^4.0.0": - version "4.1.12" - resolved "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz" - integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ== + version "4.1.13" + resolved "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz" + integrity sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw== dependencies: "@types/ms" "*" -"@types/dompurify@^3.0.5": - version "3.0.5" - resolved "https://registry.npmjs.org/@types/dompurify/-/dompurify-3.0.5.tgz" - integrity sha512-1Wg0g3BtQF7sSb27fJQAKck1HECM6zV1EB66j8JH9i3LCjYabJa0FSdiSgsD5K/RbrsR0SiraKacLB+T8ZVYAg== - dependencies: - "@types/trusted-types" "*" - "@types/eslint-scope@^3.7.7": version "3.7.7" resolved "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz" @@ -4711,45 +5146,54 @@ dependencies: "@types/estree" "*" -"@types/estree@*", "@types/estree@^1.0.0", "@types/estree@^1.0.6": - version "1.0.6" - resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz" - integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== +"@types/estree@*", "@types/estree@^1.0.0", "@types/estree@^1.0.8": + version "1.0.9" + resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz" + integrity sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg== -"@types/express-serve-static-core@*": - version "5.0.1" - resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.1.tgz" - integrity sha512-CRICJIl0N5cXDONAdlTv5ShATZ4HEwk6kDDIW2/w9qOWKg+NU/5F8wYRWCrONad0/UKkloNSmmyN/wX4rtpbVA== +"@types/express-serve-static-core@*", "@types/express-serve-static-core@^5.0.0": + version "5.1.1" + resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.1.1.tgz" + integrity sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A== dependencies: "@types/node" "*" "@types/qs" "*" "@types/range-parser" "*" "@types/send" "*" -"@types/express-serve-static-core@^4.17.33": - version "4.19.6" - resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz" - integrity sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A== +"@types/express-serve-static-core@^4.17.21", "@types/express-serve-static-core@^4.17.33": + version "4.19.8" + resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.8.tgz" + integrity sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA== dependencies: "@types/node" "*" "@types/qs" "*" "@types/range-parser" "*" "@types/send" "*" -"@types/express@*", "@types/express@^4.17.13": - version "4.17.21" - resolved "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz" - integrity sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ== +"@types/express@*": + version "5.0.6" + resolved "https://registry.npmjs.org/@types/express/-/express-5.0.6.tgz" + integrity sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "^5.0.0" + "@types/serve-static" "^2" + +"@types/express@^4.17.13", "@types/express@^4.17.25": + version "4.17.25" + resolved "https://registry.npmjs.org/@types/express/-/express-4.17.25.tgz" + integrity sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw== dependencies: "@types/body-parser" "*" "@types/express-serve-static-core" "^4.17.33" "@types/qs" "*" - "@types/serve-static" "*" + "@types/serve-static" "^1" "@types/geojson@*": - version "7946.0.14" - resolved "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.14.tgz" - integrity sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg== + version "7946.0.16" + resolved "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz" + integrity sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg== "@types/graceful-fs@^4.1.2": version "4.1.9" @@ -4758,10 +5202,10 @@ dependencies: "@types/node" "*" -"@types/gtag.js@^0.0.12": - version "0.0.12" - resolved "https://registry.npmjs.org/@types/gtag.js/-/gtag.js-0.0.12.tgz" - integrity sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg== +"@types/gtag.js@^0.0.20": + version "0.0.20" + resolved "https://registry.npmjs.org/@types/gtag.js/-/gtag.js-0.0.20.tgz" + integrity sha512-wwAbk3SA2QeU67unN7zPxjEHmPmlXwZXZvQEpbEUQuMCRGgKyE1m6XDuTUA9b6pCGb/GqJmdfMOY5LuDjJSbbg== "@types/hast@^2.0.0": version "2.3.10" @@ -4788,25 +5232,25 @@ integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== "@types/http-cache-semantics@^4.0.2": - version "4.0.4" - resolved "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz" - integrity sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== + version "4.2.0" + resolved "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz" + integrity sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q== "@types/http-errors@*": - version "2.0.4" - resolved "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz" - integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA== + version "2.0.5" + resolved "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz" + integrity sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg== "@types/http-proxy@^1.17.8": - version "1.17.15" - resolved "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz" - integrity sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ== + version "1.17.17" + resolved "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.17.tgz" + integrity sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw== dependencies: "@types/node" "*" "@types/is-stream@^1.1.0": version "1.1.0" - resolved "https://registry.yarnpkg.com/@types/is-stream/-/is-stream-1.1.0.tgz#b84d7bb207a210f2af9bed431dc0fbe9c4143be1" + resolved "https://registry.npmjs.org/@types/is-stream/-/is-stream-1.1.0.tgz" integrity sha512-jkZatu4QVbR60mpIzjINmtS1ZF4a/FqdTUTBeQDVOQ2PYyidtwFKr0B5G6ERukKwliq+7mIXvxyppwzG5EgRYg== dependencies: "@types/node" "*" @@ -4838,7 +5282,7 @@ jest-matcher-utils "^27.0.0" pretty-format "^27.0.0" -"@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": +"@types/json-schema@*", "@types/json-schema@^7.0.15", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": version "7.0.15" resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz" integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== @@ -4850,7 +5294,7 @@ "@types/jsonwebtoken@^9.0.0": version "9.0.10" - resolved "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-9.0.10.tgz#a7932a47177dcd4283b6146f3bd5c26d82647f09" + resolved "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-9.0.10.tgz" integrity sha512-asx5hIG9Qmf/1oStypjanR7iKTv0gXQ1Ov/jfrX6kS/EO0OFni8orbmGCn0672NHR3kXHwpAwR+B368ZGN/2rA== dependencies: "@types/ms" "*" @@ -4858,7 +5302,7 @@ "@types/lru-cache@^5.1.0": version "5.1.1" - resolved "https://registry.yarnpkg.com/@types/lru-cache/-/lru-cache-5.1.1.tgz#c48c2e27b65d2a153b19bfc1a317e30872e01eef" + resolved "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz" integrity sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw== "@types/mdast@^3.0.0": @@ -4886,27 +5330,27 @@ integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w== "@types/ms@*": - version "0.7.34" - resolved "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz" - integrity sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g== + version "2.1.0" + resolved "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz" + integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== "@types/node-forge@^1.3.0": - version "1.3.11" - resolved "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz" - integrity sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ== + version "1.3.14" + resolved "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.14.tgz" + integrity sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw== dependencies: "@types/node" "*" "@types/node@*": - version "22.8.6" - resolved "https://registry.npmjs.org/@types/node/-/node-22.8.6.tgz" - integrity sha512-tosuJYKrIqjQIlVCM4PEGxOmyg3FCPa/fViuJChnGeEIhjA46oy8FMVoF9su1/v8PNs2a8Q0iFNyOx0uOF91nw== + version "25.8.0" + resolved "https://registry.npmjs.org/@types/node/-/node-25.8.0.tgz" + integrity sha512-TCFSk8IZh+iLX1xtksoBVtdmgL+1IX0fC9BeU4QqFSuNdN/K+HUlhqOzEmSYYpZUVsLYcPqc9KX+60iDuninSQ== dependencies: - undici-types "~6.19.8" + undici-types ">=7.24.0 <7.24.7" "@types/node@>=12.0.0": version "25.6.2" - resolved "https://registry.yarnpkg.com/@types/node/-/node-25.6.2.tgz#8c491201373690e4ef2a2ffed0dfb510a5830b92" + resolved "https://registry.npmjs.org/@types/node/-/node-25.6.2.tgz" integrity sha512-sokuT28dxf9JT5Kady1fsXOvI4HVpjZa95NKT5y9PNTIrs2AsobR4GFAA90ZG8M+nxVRLysCXsVj6eGC7Vbrlw== dependencies: undici-types "~7.19.0" @@ -4932,14 +5376,9 @@ integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA== "@types/prismjs@^1.26.0": - version "1.26.5" - resolved "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.5.tgz" - integrity sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ== - -"@types/prop-types@*": - version "15.7.13" - resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz" - integrity sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA== + version "1.26.6" + resolved "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.6.tgz" + integrity sha512-vqlvI7qlMvcCBbVe0AKAb4f97//Hy0EBTaiW8AalRnG/xAN5zOiWWyrNqNXeq8+KAuvRewjCVY1+IPxk4RdNYw== "@types/q@^1.5.1": version "1.5.8" @@ -4947,9 +5386,9 @@ integrity sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw== "@types/qs@*": - version "6.9.16" - resolved "https://registry.npmjs.org/@types/qs/-/qs-6.9.16.tgz" - integrity sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A== + version "6.15.1" + resolved "https://registry.npmjs.org/@types/qs/-/qs-6.15.1.tgz" + integrity sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw== "@types/range-parser@*": version "1.2.7" @@ -4983,25 +5422,27 @@ "@types/react" "*" "@types/react-transition-group@^4.4.0": - version "4.4.11" - resolved "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.11.tgz" - integrity sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA== - dependencies: - "@types/react" "*" + version "4.4.12" + resolved "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz" + integrity sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w== "@types/react@*": - version "18.3.12" - resolved "https://registry.npmjs.org/@types/react/-/react-18.3.12.tgz" - integrity sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw== + version "19.2.14" + resolved "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz" + integrity sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w== dependencies: - "@types/prop-types" "*" - csstype "^3.0.2" + csstype "^3.2.2" "@types/retry@0.12.0": version "0.12.0" resolved "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz" integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== +"@types/retry@0.12.2": + version "0.12.2" + resolved "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz" + integrity sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow== + "@types/sax@^1.2.1": version "1.2.7" resolved "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz" @@ -5010,30 +5451,45 @@ "@types/node" "*" "@types/send@*": - version "0.17.4" - resolved "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz" - integrity sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA== + version "1.2.1" + resolved "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz" + integrity sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ== + dependencies: + "@types/node" "*" + +"@types/send@<1": + version "0.17.6" + resolved "https://registry.npmjs.org/@types/send/-/send-0.17.6.tgz" + integrity sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og== dependencies: "@types/mime" "^1" "@types/node" "*" -"@types/serve-index@^1.9.1": +"@types/serve-index@^1.9.1", "@types/serve-index@^1.9.4": version "1.9.4" resolved "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz" integrity sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug== dependencies: "@types/express" "*" -"@types/serve-static@*", "@types/serve-static@^1.13.10": - version "1.15.7" - resolved "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz" - integrity sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw== +"@types/serve-static@^1", "@types/serve-static@^1.13.10", "@types/serve-static@^1.15.5": + version "1.15.10" + resolved "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.10.tgz" + integrity sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw== + dependencies: + "@types/http-errors" "*" + "@types/node" "*" + "@types/send" "<1" + +"@types/serve-static@^2": + version "2.2.0" + resolved "https://registry.npmjs.org/@types/serve-static/-/serve-static-2.2.0.tgz" + integrity sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ== dependencies: "@types/http-errors" "*" "@types/node" "*" - "@types/send" "*" -"@types/sockjs@^0.3.33": +"@types/sockjs@^0.3.33", "@types/sockjs@^0.3.36": version "0.3.36" resolved "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz" integrity sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q== @@ -5047,10 +5503,10 @@ "@types/triple-beam@^1.3.2": version "1.3.5" - resolved "https://registry.yarnpkg.com/@types/triple-beam/-/triple-beam-1.3.5.tgz#74fef9ffbaa198eb8b588be029f38b00299caa2c" + resolved "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz" integrity sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw== -"@types/trusted-types@*": +"@types/trusted-types@^2.0.7": version "2.0.7" resolved "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz" integrity sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw== @@ -5065,10 +5521,10 @@ resolved "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz" integrity sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA== -"@types/ws@^8.5.5": - version "8.5.12" - resolved "https://registry.npmjs.org/@types/ws/-/ws-8.5.12.tgz" - integrity sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ== +"@types/ws@^8.5.10", "@types/ws@^8.5.5": + version "8.18.1" + resolved "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz" + integrity sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg== dependencies: "@types/node" "*" @@ -5078,143 +5534,151 @@ integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== "@types/yargs@^16.0.0": - version "16.0.9" - resolved "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz" - integrity sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA== + version "16.0.11" + resolved "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.11.tgz" + integrity sha512-sbtvk8wDN+JvEdabmZExoW/HNr1cB7D/j4LT08rMiuikfA7m/JNJg7ATQcgzs34zHnoScDkY0ZRSl29Fkmk36g== dependencies: "@types/yargs-parser" "*" "@types/yargs@^17.0.8": - version "17.0.33" - resolved "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz" - integrity sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA== + version "17.0.35" + resolved "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz" + integrity sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg== dependencies: "@types/yargs-parser" "*" "@ungap/structured-clone@^1.0.0": - version "1.2.0" - resolved "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz" - integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== - -"@webassemblyjs/ast@1.12.1", "@webassemblyjs/ast@^1.12.1": - version "1.12.1" - resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz" - integrity sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg== - dependencies: - "@webassemblyjs/helper-numbers" "1.11.6" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - -"@webassemblyjs/floating-point-hex-parser@1.11.6": - version "1.11.6" - resolved "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz" - integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== - -"@webassemblyjs/helper-api-error@1.11.6": - version "1.11.6" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz" - integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== - -"@webassemblyjs/helper-buffer@1.12.1": - version "1.12.1" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz" - integrity sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw== - -"@webassemblyjs/helper-numbers@1.11.6": - version "1.11.6" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz" - integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== - dependencies: - "@webassemblyjs/floating-point-hex-parser" "1.11.6" - "@webassemblyjs/helper-api-error" "1.11.6" + version "1.3.1" + resolved "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.1.tgz" + integrity sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ== + +"@upsetjs/venn.js@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@upsetjs/venn.js/-/venn.js-2.0.0.tgz" + integrity sha512-WbBhLrooyePuQ1VZxrJjtLvTc4NVfpOyKx0sKqioq9bX1C1m7Jgykkn8gLrtwumBioXIqam8DLxp88Adbue6Hw== + optionalDependencies: + d3-selection "^3.0.0" + d3-transition "^3.0.1" + +"@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.14.1": + version "1.14.1" + resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz" + integrity sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ== + dependencies: + "@webassemblyjs/helper-numbers" "1.13.2" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + +"@webassemblyjs/floating-point-hex-parser@1.13.2": + version "1.13.2" + resolved "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz" + integrity sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA== + +"@webassemblyjs/helper-api-error@1.13.2": + version "1.13.2" + resolved "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz" + integrity sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ== + +"@webassemblyjs/helper-buffer@1.14.1": + version "1.14.1" + resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz" + integrity sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA== + +"@webassemblyjs/helper-numbers@1.13.2": + version "1.13.2" + resolved "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz" + integrity sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA== + dependencies: + "@webassemblyjs/floating-point-hex-parser" "1.13.2" + "@webassemblyjs/helper-api-error" "1.13.2" "@xtuc/long" "4.2.2" -"@webassemblyjs/helper-wasm-bytecode@1.11.6": - version "1.11.6" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz" - integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== +"@webassemblyjs/helper-wasm-bytecode@1.13.2": + version "1.13.2" + resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz" + integrity sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA== -"@webassemblyjs/helper-wasm-section@1.12.1": - version "1.12.1" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz" - integrity sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g== +"@webassemblyjs/helper-wasm-section@1.14.1": + version "1.14.1" + resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz" + integrity sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw== dependencies: - "@webassemblyjs/ast" "1.12.1" - "@webassemblyjs/helper-buffer" "1.12.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/wasm-gen" "1.12.1" + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-buffer" "1.14.1" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + "@webassemblyjs/wasm-gen" "1.14.1" -"@webassemblyjs/ieee754@1.11.6": - version "1.11.6" - resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz" - integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== +"@webassemblyjs/ieee754@1.13.2": + version "1.13.2" + resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz" + integrity sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw== dependencies: "@xtuc/ieee754" "^1.2.0" -"@webassemblyjs/leb128@1.11.6": - version "1.11.6" - resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz" - integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== +"@webassemblyjs/leb128@1.13.2": + version "1.13.2" + resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz" + integrity sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw== dependencies: "@xtuc/long" "4.2.2" -"@webassemblyjs/utf8@1.11.6": - version "1.11.6" - resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz" - integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== - -"@webassemblyjs/wasm-edit@^1.12.1": - version "1.12.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz" - integrity sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g== - dependencies: - "@webassemblyjs/ast" "1.12.1" - "@webassemblyjs/helper-buffer" "1.12.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/helper-wasm-section" "1.12.1" - "@webassemblyjs/wasm-gen" "1.12.1" - "@webassemblyjs/wasm-opt" "1.12.1" - "@webassemblyjs/wasm-parser" "1.12.1" - "@webassemblyjs/wast-printer" "1.12.1" - -"@webassemblyjs/wasm-gen@1.12.1": - version "1.12.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz" - integrity sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w== - dependencies: - "@webassemblyjs/ast" "1.12.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/ieee754" "1.11.6" - "@webassemblyjs/leb128" "1.11.6" - "@webassemblyjs/utf8" "1.11.6" - -"@webassemblyjs/wasm-opt@1.12.1": - version "1.12.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz" - integrity sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg== - dependencies: - "@webassemblyjs/ast" "1.12.1" - "@webassemblyjs/helper-buffer" "1.12.1" - "@webassemblyjs/wasm-gen" "1.12.1" - "@webassemblyjs/wasm-parser" "1.12.1" - -"@webassemblyjs/wasm-parser@1.12.1", "@webassemblyjs/wasm-parser@^1.12.1": - version "1.12.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz" - integrity sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ== - dependencies: - "@webassemblyjs/ast" "1.12.1" - "@webassemblyjs/helper-api-error" "1.11.6" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/ieee754" "1.11.6" - "@webassemblyjs/leb128" "1.11.6" - "@webassemblyjs/utf8" "1.11.6" - -"@webassemblyjs/wast-printer@1.12.1": - version "1.12.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz" - integrity sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA== - dependencies: - "@webassemblyjs/ast" "1.12.1" +"@webassemblyjs/utf8@1.13.2": + version "1.13.2" + resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz" + integrity sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ== + +"@webassemblyjs/wasm-edit@^1.14.1": + version "1.14.1" + resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz" + integrity sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-buffer" "1.14.1" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + "@webassemblyjs/helper-wasm-section" "1.14.1" + "@webassemblyjs/wasm-gen" "1.14.1" + "@webassemblyjs/wasm-opt" "1.14.1" + "@webassemblyjs/wasm-parser" "1.14.1" + "@webassemblyjs/wast-printer" "1.14.1" + +"@webassemblyjs/wasm-gen@1.14.1": + version "1.14.1" + resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz" + integrity sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + "@webassemblyjs/ieee754" "1.13.2" + "@webassemblyjs/leb128" "1.13.2" + "@webassemblyjs/utf8" "1.13.2" + +"@webassemblyjs/wasm-opt@1.14.1": + version "1.14.1" + resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz" + integrity sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-buffer" "1.14.1" + "@webassemblyjs/wasm-gen" "1.14.1" + "@webassemblyjs/wasm-parser" "1.14.1" + +"@webassemblyjs/wasm-parser@1.14.1", "@webassemblyjs/wasm-parser@^1.14.1": + version "1.14.1" + resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz" + integrity sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-api-error" "1.13.2" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + "@webassemblyjs/ieee754" "1.13.2" + "@webassemblyjs/leb128" "1.13.2" + "@webassemblyjs/utf8" "1.13.2" + +"@webassemblyjs/wast-printer@1.14.1": + version "1.14.1" + resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz" + integrity sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw== + dependencies: + "@webassemblyjs/ast" "1.14.1" "@xtuc/long" "4.2.2" "@webpack-cli/configtest@^2.1.1": @@ -5247,7 +5711,7 @@ abab@^2.0.3, abab@^2.0.5: resolved "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz" integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== -accepts@~1.3.4, accepts@~1.3.8: +accepts@~1.3.8: version "1.3.8" resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== @@ -5263,6 +5727,11 @@ acorn-globals@^6.0.0: acorn "^7.1.1" acorn-walk "^7.1.1" +acorn-import-phases@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz" + integrity sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ== + acorn-jsx@^5.0.0: version "5.3.2" resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" @@ -5274,9 +5743,9 @@ acorn-walk@^7.1.1: integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== acorn-walk@^8.0.0, acorn-walk@^8.1.1: - version "8.3.4" - resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz" - integrity sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g== + version "8.3.5" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz" + integrity sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw== dependencies: acorn "^8.11.0" @@ -5285,14 +5754,14 @@ acorn@^7.1.1: resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.0.0, acorn@^8.0.4, acorn@^8.11.0, acorn@^8.12.1, acorn@^8.14.0, acorn@^8.2.4, acorn@^8.4.1, acorn@^8.8.2: - version "8.14.0" - resolved "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz" - integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== +acorn@^8.0.0, acorn@^8.0.4, acorn@^8.11.0, acorn@^8.15.0, acorn@^8.16.0, acorn@^8.2.4, acorn@^8.4.1: + version "8.16.0" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz" + integrity sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw== add@^2.0.6: version "2.0.6" - resolved "https://registry.yarnpkg.com/add/-/add-2.0.6.tgz#248f0a9f6e5a528ef2295dbeec30532130ae2235" + resolved "https://registry.npmjs.org/add/-/add-2.0.6.tgz" integrity sha512-j5QzrmsokwWWp6kUcJQySpbG+xfOBqqKnup3OIk1pz+kB/80SLorZ9V8zHFLO92Lcd+hbvq8bT+zOGoPkmBV0Q== address@^1.0.1, address@^1.1.2: @@ -5335,9 +5804,9 @@ ajv-keywords@^5.1.0: fast-deep-equal "^3.1.3" ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5: - version "6.12.6" - resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + version "6.15.0" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz" + integrity sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw== dependencies: fast-deep-equal "^3.1.1" fast-json-stable-stringify "^2.0.0" @@ -5345,25 +5814,25 @@ ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5: uri-js "^4.2.2" ajv@^8.0.0, ajv@^8.9.0: - version "8.17.1" - resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz" - integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== + version "8.20.0" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz" + integrity sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA== dependencies: fast-deep-equal "^3.1.3" fast-uri "^3.0.1" json-schema-traverse "^1.0.0" require-from-string "^2.0.2" -algoliasearch-helper@^3.22.6: - version "3.24.1" - resolved "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.24.1.tgz" - integrity sha512-knYRACqLH9UpeR+WRUrBzBFR2ulGuOjI2b525k4PNeqZxeFMHJE7YcL7s6Jh12Qza0rtHqZdgHMfeuaaAkf4wA== +algoliasearch-helper@^3.26.0: + version "3.29.1" + resolved "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.29.1.tgz" + integrity sha512-6ck2YFudF2Pje7szQoPBiRFTGfd+1I+0I/WfLPGn0bj1kvrFoOQmNyedNiDxTk3/r4IfSLDYk+RA4G7u8H6+yA== dependencies: "@algolia/events" "^4.0.1" algoliasearch@^4.17.0: version "4.27.0" - resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.27.0.tgz#cc4fcffb79013dd14b182f63b2182d59ab1eb050" + resolved "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.27.0.tgz" integrity sha512-C88C5grLa5VOCp9eYZJt+q99ik7yNdm92l7Q9+4XK0Md8kL05Lg8l2v9ZVX0uMW3mH9pAFxMMXlLOvqNumA4lw== dependencies: "@algolia/cache-browser-local-storage" "4.27.0" @@ -5382,24 +5851,25 @@ algoliasearch@^4.17.0: "@algolia/requester-node-http" "4.27.0" "@algolia/transporter" "4.27.0" -algoliasearch@^5.12.0, algoliasearch@^5.14.2, algoliasearch@^5.17.1: - version "5.20.1" - resolved "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.20.1.tgz" - integrity sha512-SiCOCVBCQUg/aWkfMnjT+8TQxNNFlPZTI7v8y4+aZXzJg6zDIzKy9KcYVS4sc+xk5cwW5hyJ+9z836f4+wvgzA== - dependencies: - "@algolia/client-abtesting" "5.20.1" - "@algolia/client-analytics" "5.20.1" - "@algolia/client-common" "5.20.1" - "@algolia/client-insights" "5.20.1" - "@algolia/client-personalization" "5.20.1" - "@algolia/client-query-suggestions" "5.20.1" - "@algolia/client-search" "5.20.1" - "@algolia/ingestion" "1.20.1" - "@algolia/monitoring" "1.20.1" - "@algolia/recommend" "5.20.1" - "@algolia/requester-browser-xhr" "5.20.1" - "@algolia/requester-fetch" "5.20.1" - "@algolia/requester-node-http" "5.20.1" +algoliasearch@^5.12.0, algoliasearch@^5.37.0: + version "5.52.1" + resolved "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.52.1.tgz" + integrity sha512-fHA8+kXTbjagw3jkLiaS7KKrH8qe2DyOsiUhGlN4cdT77PEsfqXZl7ewDk1hsg+pJnPlnE50XtLxjR91iJOpmg== + dependencies: + "@algolia/abtesting" "1.18.1" + "@algolia/client-abtesting" "5.52.1" + "@algolia/client-analytics" "5.52.1" + "@algolia/client-common" "5.52.1" + "@algolia/client-insights" "5.52.1" + "@algolia/client-personalization" "5.52.1" + "@algolia/client-query-suggestions" "5.52.1" + "@algolia/client-search" "5.52.1" + "@algolia/ingestion" "1.52.1" + "@algolia/monitoring" "1.52.1" + "@algolia/recommend" "5.52.1" + "@algolia/requester-browser-xhr" "5.52.1" + "@algolia/requester-fetch" "5.52.1" + "@algolia/requester-node-http" "5.52.1" ansi-align@^3.0.0, ansi-align@^3.0.1: version "3.0.1" @@ -5408,7 +5878,7 @@ ansi-align@^3.0.0, ansi-align@^3.0.1: dependencies: string-width "^4.1.0" -ansi-escapes@^4.2.1, ansi-escapes@^4.3.2: +ansi-escapes@^4.2.1: version "4.3.2" resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== @@ -5425,10 +5895,10 @@ ansi-regex@^5.0.1: resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-regex@^6.0.1: - version "6.1.0" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz" - integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== +ansi-regex@^6.2.2: + version "6.2.2" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz" + integrity sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg== ansi-styles@^3.2.1: version "3.2.1" @@ -5450,9 +5920,14 @@ ansi-styles@^5.0.0: integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== ansi-styles@^6.1.0: - version "6.2.1" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz" - integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + version "6.2.3" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz" + integrity sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg== + +ansis@^3.2.0: + version "3.17.0" + resolved "https://registry.npmjs.org/ansis/-/ansis-3.17.0.tgz" + integrity sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg== anymatch@^3.0.3, anymatch@~3.1.2: version "3.1.3" @@ -5484,13 +5959,13 @@ argparse@^2.0.1: resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -array-buffer-byte-length@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz" - integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== +array-buffer-byte-length@^1.0.1, array-buffer-byte-length@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz" + integrity sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw== dependencies: - call-bind "^1.0.5" - is-array-buffer "^3.0.4" + call-bound "^1.0.3" + is-array-buffer "^3.0.5" array-flatten@1.1.1: version "1.1.1" @@ -5507,36 +5982,36 @@ array-union@^2.1.0: resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== -array.prototype.reduce@^1.0.6: - version "1.0.7" - resolved "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz" - integrity sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q== +array.prototype.reduce@^1.0.8: + version "1.0.8" + resolved "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.8.tgz" + integrity sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw== dependencies: - call-bind "^1.0.7" + call-bind "^1.0.8" + call-bound "^1.0.4" define-properties "^1.2.1" - es-abstract "^1.23.2" + es-abstract "^1.23.9" es-array-method-boxes-properly "^1.0.0" es-errors "^1.3.0" - es-object-atoms "^1.0.0" - is-string "^1.0.7" + es-object-atoms "^1.1.1" + is-string "^1.1.1" -arraybuffer.prototype.slice@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz" - integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== +arraybuffer.prototype.slice@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz" + integrity sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ== dependencies: array-buffer-byte-length "^1.0.1" - call-bind "^1.0.5" + call-bind "^1.0.8" define-properties "^1.2.1" - es-abstract "^1.22.3" - es-errors "^1.2.1" - get-intrinsic "^1.2.3" + es-abstract "^1.23.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.6" is-array-buffer "^3.0.4" - is-shared-array-buffer "^1.0.2" asciidoctor-opal-runtime@0.3.4: version "0.3.4" - resolved "https://registry.yarnpkg.com/asciidoctor-opal-runtime/-/asciidoctor-opal-runtime-0.3.4.tgz#47817b0e0331563ad2f998f5f081893f0e5c4af4" + resolved "https://registry.npmjs.org/asciidoctor-opal-runtime/-/asciidoctor-opal-runtime-0.3.4.tgz" integrity sha512-zqd6zn1LV+PZ69AP/kEbB00zuPHMIAJY3IX8+aZV+X1qOwatYvKGjsMmdMc5ApfhtkjZ4mYkqiTPJWnEnBiMJg== dependencies: fast-glob "~3.3" @@ -5544,20 +6019,34 @@ asciidoctor-opal-runtime@0.3.4: asciidoctor@^2.2.6: version "2.2.9" - resolved "https://registry.yarnpkg.com/asciidoctor/-/asciidoctor-2.2.9.tgz#67e07913b0317d2c7899a2ce085811f53bf8499d" + resolved "https://registry.npmjs.org/asciidoctor/-/asciidoctor-2.2.9.tgz" integrity sha512-lzviGTZ/tnnmDLIE+fY/m8aUc6lGTGRNh5rTC1HPevlc89G0iYez+sQFT60oZ87BPzOYllP+TeK1xh0D1wt/6Q== dependencies: "@asciidoctor/cli" "3.5.0" "@asciidoctor/core" "2.2.9" +asn1js@^3.0.6: + version "3.0.10" + resolved "https://registry.npmjs.org/asn1js/-/asn1js-3.0.10.tgz" + integrity sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg== + dependencies: + pvtsutils "^1.3.6" + pvutils "^1.1.5" + tslib "^2.8.1" + astring@^1.8.0: version "1.9.0" resolved "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz" integrity sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg== +async-function@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz" + integrity sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA== + async@^3.2.3: version "3.2.6" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.6.tgz#1b0728e14929d51b85b449b7f06e27c1145e38ce" + resolved "https://registry.npmjs.org/async/-/async-3.2.6.tgz" integrity sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA== asynckit@^0.4.0: @@ -5570,16 +6059,15 @@ at-least-node@^1.0.0: resolved "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== -autoprefixer@^10.4.12, autoprefixer@^10.4.19, autoprefixer@^10.4.7: - version "10.4.20" - resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz" - integrity sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g== +autoprefixer@^10.4.12, autoprefixer@^10.4.19, autoprefixer@^10.4.23, autoprefixer@^10.4.7: + version "10.5.0" + resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.5.0.tgz" + integrity sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong== dependencies: - browserslist "^4.23.3" - caniuse-lite "^1.0.30001646" - fraction.js "^4.3.7" - normalize-range "^0.1.2" - picocolors "^1.0.1" + browserslist "^4.28.2" + caniuse-lite "^1.0.30001787" + fraction.js "^5.3.4" + picocolors "^1.1.1" postcss-value-parser "^4.2.0" available-typed-arrays@^1.0.7: @@ -5591,7 +6079,7 @@ available-typed-arrays@^1.0.7: aws-lambda@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/aws-lambda/-/aws-lambda-1.0.7.tgz#c6b674df47458b5ecd43ab734899ad2e2d457013" + resolved "https://registry.npmjs.org/aws-lambda/-/aws-lambda-1.0.7.tgz" integrity sha512-9GNFMRrEMG5y3Jvv+V4azWvc+qNWdWLTjDdhf/zgMlz8haaaLWv0xeAIWxz9PuWUBawsVxy0zZotjCdR3Xq+2w== dependencies: aws-sdk "^2.814.0" @@ -5601,7 +6089,7 @@ aws-lambda@^1.0.7: aws-sdk@^2.814.0: version "2.1693.0" - resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1693.0.tgz#fda38671af3dc5fa8117e9aa09cf6ce37e34010e" + resolved "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1693.0.tgz" integrity sha512-cJmb8xEnVLT+R6fBS5sn/EFJiX7tUnDaPtOPZ1vFbOJtd0fnZn/Ky2XGgsvvoeliWeH7mL3TWSX5zXXGSQV6gQ== dependencies: buffer "4.9.2" @@ -5623,12 +6111,13 @@ axios@^0.25.0: follow-redirects "^1.14.7" axios@^1.7.4: - version "1.16.0" - resolved "https://registry.yarnpkg.com/axios/-/axios-1.16.0.tgz#f8e5dd931cef2a5f8c32216d5784eda2f8750eb7" - integrity sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w== + version "1.16.1" + resolved "https://registry.npmjs.org/axios/-/axios-1.16.1.tgz" + integrity sha512-caYkukvroVPO8KrzuJEb50Hm07KwfBZPEC3VeFHTsqWHvKTsy54hjJz9BS/cdaypROE2rH6xvm9mHX4fgWkr3A== dependencies: follow-redirects "^1.16.0" form-data "^4.0.5" + https-proxy-agent "^5.0.1" proxy-from-env "^2.1.0" babel-jest@^27.5.1: @@ -5715,34 +6204,42 @@ babel-plugin-macros@^3.1.0: cosmiconfig "^7.0.0" resolve "^1.19.0" -babel-plugin-polyfill-corejs2@^0.4.10: - version "0.4.11" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz" - integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== +babel-plugin-polyfill-corejs2@^0.4.14, babel-plugin-polyfill-corejs2@^0.4.15: + version "0.4.17" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.17.tgz" + integrity sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w== dependencies: - "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.6.2" + "@babel/compat-data" "^7.28.6" + "@babel/helper-define-polyfill-provider" "^0.6.8" semver "^6.3.1" -babel-plugin-polyfill-corejs3@^0.10.6: - version "0.10.6" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz" - integrity sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA== +babel-plugin-polyfill-corejs3@^0.13.0: + version "0.13.0" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz" + integrity sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A== dependencies: - "@babel/helper-define-polyfill-provider" "^0.6.2" - core-js-compat "^3.38.0" + "@babel/helper-define-polyfill-provider" "^0.6.5" + core-js-compat "^3.43.0" -babel-plugin-polyfill-regenerator@^0.6.1: - version "0.6.2" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz" - integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== +babel-plugin-polyfill-corejs3@^0.14.0: + version "0.14.2" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.14.2.tgz" + integrity sha512-coWpDLJ410R781Npmn/SIBZEsAetR4xVi0SxLMXPaMO4lSf1MwnkGYMtkFxew0Dn8B3/CpbpYxN0JCgg8mn67g== dependencies: - "@babel/helper-define-polyfill-provider" "^0.6.2" + "@babel/helper-define-polyfill-provider" "^0.6.8" + core-js-compat "^3.48.0" + +babel-plugin-polyfill-regenerator@^0.6.5, babel-plugin-polyfill-regenerator@^0.6.6: + version "0.6.8" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.8.tgz" + integrity sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.6.8" babel-preset-current-node-syntax@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz" - integrity sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw== + version "1.2.0" + resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz" + integrity sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg== dependencies: "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-bigint" "^7.8.3" @@ -5788,6 +6285,11 @@ base64-js@^1.0.2, base64-js@^1.3.1: resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== +baseline-browser-mapping@^2.10.12: + version "2.10.29" + resolved "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.29.tgz" + integrity sha512-Asa2krT+XTPZINCS+2QcyS8WTkObE77RwkydwF7h6DmnKqbvlalz93m/dnphUyCa6SWSP51VgtEUf2FN+gelFQ== + batch@0.6.1: version "0.6.1" resolved "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz" @@ -5795,7 +6297,7 @@ batch@0.6.1: before-after-hook@^2.2.0: version "2.2.3" - resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c" + resolved "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz" integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ== big.js@^5.2.2: @@ -5808,28 +6310,28 @@ binary-extensions@^2.0.0: resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz" integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== -body-parser@1.20.3: - version "1.20.3" - resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz" - integrity sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g== +body-parser@~1.20.5: + version "1.20.5" + resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.5.tgz" + integrity sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA== dependencies: - bytes "3.1.2" + bytes "~3.1.2" content-type "~1.0.5" debug "2.6.9" depd "2.0.0" - destroy "1.2.0" - http-errors "2.0.0" - iconv-lite "0.4.24" - on-finished "2.4.1" - qs "6.13.0" - raw-body "2.5.2" + destroy "~1.2.0" + http-errors "~2.0.1" + iconv-lite "~0.4.24" + on-finished "~2.4.1" + qs "~6.15.1" + raw-body "~2.5.3" type-is "~1.6.18" - unpipe "1.0.0" + unpipe "~1.0.0" -bonjour-service@^1.0.11: - version "1.2.1" - resolved "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz" - integrity sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw== +bonjour-service@^1.0.11, bonjour-service@^1.2.1: + version "1.3.0" + resolved "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz" + integrity sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA== dependencies: fast-deep-equal "^3.1.3" multicast-dns "^7.2.5" @@ -5841,7 +6343,7 @@ boolbase@^1.0.0, boolbase@~1.0.0: bottleneck@^2.15.3: version "2.19.5" - resolved "https://registry.yarnpkg.com/bottleneck/-/bottleneck-2.19.5.tgz#5df0b90f59fd47656ebe63c78a98419205cadd91" + resolved "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz" integrity sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw== boxen@^5.0.0: @@ -5887,9 +6389,9 @@ boxen@^7.0.0: wrap-ansi "^8.1.0" brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + version "1.1.14" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz" + integrity sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g== dependencies: balanced-match "^1.0.0" concat-map "0.0.1" @@ -5906,15 +6408,16 @@ browser-process-hrtime@^1.0.0: resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz" integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== -browserslist@^4.0.0, browserslist@^4.18.1, browserslist@^4.21.4, browserslist@^4.23.0, browserslist@^4.23.1, browserslist@^4.23.3, browserslist@^4.24.0, browserslist@^4.24.2: - version "4.24.2" - resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz" - integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg== +browserslist@^4.0.0, browserslist@^4.18.1, browserslist@^4.21.4, browserslist@^4.23.0, browserslist@^4.24.0, browserslist@^4.24.2, browserslist@^4.28.1, browserslist@^4.28.2: + version "4.28.2" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz" + integrity sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg== dependencies: - caniuse-lite "^1.0.30001669" - electron-to-chromium "^1.5.41" - node-releases "^2.0.18" - update-browserslist-db "^1.1.1" + baseline-browser-mapping "^2.10.12" + caniuse-lite "^1.0.30001782" + electron-to-chromium "^1.5.328" + node-releases "^2.0.36" + update-browserslist-db "^1.2.3" bs-logger@0.x: version "0.2.6" @@ -5932,12 +6435,12 @@ bser@2.1.1: btoa-lite@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/btoa-lite/-/btoa-lite-1.0.0.tgz#337766da15801210fdd956c22e9c6891ab9d0337" + resolved "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz" integrity sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA== buffer-equal-constant-time@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" + resolved "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz" integrity sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA== buffer-from@^1.0.0: @@ -5947,7 +6450,7 @@ buffer-from@^1.0.0: buffer@4.9.2: version "4.9.2" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" + resolved "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz" integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== dependencies: base64-js "^1.0.2" @@ -5962,16 +6465,28 @@ buffer@^6.0.3: base64-js "^1.3.1" ieee754 "^1.2.1" +bundle-name@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz" + integrity sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q== + dependencies: + run-applescript "^7.0.0" + bytes@3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== -bytes@3.1.2: +bytes@3.1.2, bytes@~3.1.2: version "3.1.2" resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== +bytestreamjs@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/bytestreamjs/-/bytestreamjs-2.0.1.tgz" + integrity sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ== + cacheable-lookup@^7.0.0: version "7.0.0" resolved "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz" @@ -6005,26 +6520,15 @@ cacheable-request@^6.0.0: call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" + resolved "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz" integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== dependencies: es-errors "^1.3.0" function-bind "^1.1.2" -call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: - version "1.0.7" - resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz" - integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== - dependencies: - es-define-property "^1.0.0" - es-errors "^1.3.0" - function-bind "^1.1.2" - get-intrinsic "^1.2.4" - set-function-length "^1.2.1" - -call-bind@^1.0.8: +call-bind@^1.0.7, call-bind@^1.0.8, call-bind@^1.0.9: version "1.0.9" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.9.tgz#39a644700c80bc7d0ca9102fc6d1d43b2fd7eee7" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.9.tgz" integrity sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ== dependencies: call-bind-apply-helpers "^1.0.2" @@ -6032,9 +6536,9 @@ call-bind@^1.0.8: get-intrinsic "^1.3.0" set-function-length "^1.2.2" -call-bound@^1.0.2, call-bound@^1.0.4: +call-bound@^1.0.2, call-bound@^1.0.3, call-bound@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a" + resolved "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz" integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg== dependencies: call-bind-apply-helpers "^1.0.2" @@ -6083,7 +6587,7 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001616, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669: +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001782, caniuse-lite@^1.0.30001787: version "1.0.30001792" resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001792.tgz" integrity sha512-hVLMUZFgR4JJ6ACt1uEESvQN1/dBVqPAKY0hgrV70eN3391K6juAfTjKZLKvOMsx8PxA7gsY1/tLMMTcfFLLpw== @@ -6099,9 +6603,9 @@ ccount@^2.0.0: integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg== chalk-template@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/chalk-template/-/chalk-template-1.1.0.tgz" - integrity sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg== + version "1.1.2" + resolved "https://registry.npmjs.org/chalk-template/-/chalk-template-1.1.2.tgz" + integrity sha512-2bxTP2yUH7AJj/VAXfcA+4IcWGdQ87HwBANLt5XxGTeomo8yG0y95N1um9i5StvhT/Bl0/2cARA5v1PpPXUxUA== dependencies: chalk "^5.2.0" @@ -6122,11 +6626,16 @@ chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^5.0.1, chalk@^5.2.0: +chalk@^5.0.1: version "5.3.0" resolved "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz" integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== +chalk@^5.2.0: + version "5.6.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz" + integrity sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA== + chalk@^5.4.1: version "5.4.1" resolved "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz" @@ -6197,26 +6706,7 @@ cheerio@1.0.0-rc.12: parse5 "^7.0.0" parse5-htmlparser2-tree-adapter "^7.0.0" -chevrotain-allstar@~0.3.0: - version "0.3.1" - resolved "https://registry.npmjs.org/chevrotain-allstar/-/chevrotain-allstar-0.3.1.tgz" - integrity sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw== - dependencies: - lodash-es "^4.17.21" - -chevrotain@~11.0.3: - version "11.0.3" - resolved "https://registry.npmjs.org/chevrotain/-/chevrotain-11.0.3.tgz" - integrity sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw== - dependencies: - "@chevrotain/cst-dts-gen" "11.0.3" - "@chevrotain/gast" "11.0.3" - "@chevrotain/regexp-to-ast" "11.0.3" - "@chevrotain/types" "11.0.3" - "@chevrotain/utils" "11.0.3" - lodash-es "4.17.21" - -chokidar@^3.3.1, chokidar@^3.4.2, chokidar@^3.5.3: +chokidar@^3.3.1, chokidar@^3.4.2, chokidar@^3.5.3, chokidar@^3.6.0: version "3.6.0" resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz" integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== @@ -6247,11 +6737,11 @@ ci-info@^3.2.0: integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== cjs-module-lexer@^1.0.0: - version "1.4.1" - resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz" - integrity sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA== + version "1.4.3" + resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz" + integrity sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q== -clean-css@^5.2.2, clean-css@^5.3.0, clean-css@^5.3.2, clean-css@~5.3.2: +clean-css@^5.2.2, clean-css@^5.3.0, clean-css@^5.3.3, clean-css@~5.3.2: version "5.3.3" resolved "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz" integrity sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg== @@ -6264,9 +6754,9 @@ clean-stack@^2.0.0: integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== clear-module@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/clear-module/-/clear-module-4.1.2.tgz" - integrity sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw== + version "4.1.3" + resolved "https://registry.npmjs.org/clear-module/-/clear-module-4.1.3.tgz" + integrity sha512-XdLrg7BnbXKntyrbs2dNjDN9CVoTQ+WV0i7jT5/r9ahzAaSDSzC9e2OVZB/QVwbxBb1/1AeObzjlxsYk5HFvww== dependencies: parent-module "^2.0.0" resolve-from "^5.0.0" @@ -6359,9 +6849,9 @@ collapse-white-space@^2.0.0: integrity sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw== collect-v8-coverage@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz" - integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== + version "1.0.3" + resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.3.tgz" + integrity sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw== color-convert@^1.9.0: version "1.9.3" @@ -6379,7 +6869,7 @@ color-convert@^2.0.1: color-convert@^3.1.3: version "3.1.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-3.1.3.tgz#db6627b97181cb8facdfce755ae26f97ab0711f1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-3.1.3.tgz" integrity sha512-fasDH2ont2GqF5HpyO4w0+BcewlhHEZOFn9c1ckZdHpJ56Qb7MHhH/IcJZbBGgvdtwdwNbLvxiBEdg336iA9Sg== dependencies: color-name "^2.0.0" @@ -6391,7 +6881,7 @@ color-name@1.1.3: color-name@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-2.1.0.tgz#0b677385c1c4b4edfdeaf77e38fa338e3a40b693" + resolved "https://registry.npmjs.org/color-name/-/color-name-2.1.0.tgz" integrity sha512-1bPaDNFm0axzE4MEAzKPuqKWeRaT43U/hyxKPBdqTfmPF+d6n7FSoTFxLVULUJOmiLp01KjhIPPH+HrXZJN4Rg== color-name@~1.1.4: @@ -6401,14 +6891,14 @@ color-name@~1.1.4: color-string@^2.1.3: version "2.1.4" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-2.1.4.tgz#9dcf566ff976e23368c8bd673f5c35103ab41058" + resolved "https://registry.npmjs.org/color-string/-/color-string-2.1.4.tgz" integrity sha512-Bb6Cq8oq0IjDOe8wJmi4JeNn763Xs9cfrBcaylK1tPypWzyoy2G3l90v9k64kjphl/ZJjPIShFztenRomi8WTg== dependencies: color-name "^2.0.0" color@^5.0.2: version "5.0.3" - resolved "https://registry.yarnpkg.com/color/-/color-5.0.3.tgz#f79390b1b778e222ffbb54304d3dbeaef633f97f" + resolved "https://registry.npmjs.org/color/-/color-5.0.3.tgz" integrity sha512-ezmVcLR3xAVp8kYOm4GS45ZLLgIE6SPAFoduLr6hTDajwb3KZ2F46gulK3XpcwRFb5KKGCSezCBAY4Dw4HsyXA== dependencies: color-convert "^3.1.3" @@ -6468,7 +6958,7 @@ commander@^2.20.0: commander@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/commander/-/commander-3.0.2.tgz#6837c3fb677ad9933d1cfba42dd14d5117d6b39e" + resolved "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz" integrity sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow== commander@^4.0.0: @@ -6488,19 +6978,16 @@ commander@^8.3.0: commander@^9.0.0: version "9.5.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" + resolved "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz" integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== comment-json@^4.2.5: - version "4.2.5" - resolved "https://registry.npmjs.org/comment-json/-/comment-json-4.2.5.tgz" - integrity sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw== + version "4.6.2" + resolved "https://registry.npmjs.org/comment-json/-/comment-json-4.6.2.tgz" + integrity sha512-R2rze/hDX30uul4NZoIZ76ImSJLFxn/1/ZxtKC1L77y2X1k+yYu1joKbAtMA2Fg3hZrTOiw0I5mwVMo0cf250w== dependencies: array-timsort "^1.0.3" - core-util-is "^1.0.3" esprima "^4.0.1" - has-own-prop "^2.0.0" - repeat-string "^1.6.1" common-path-prefix@^3.0.0: version "3.0.0" @@ -6519,16 +7006,16 @@ compressible@~2.0.18: dependencies: mime-db ">= 1.43.0 < 2" -compression@^1.7.4: - version "1.7.5" - resolved "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz" - integrity sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q== +compression@^1.7.4, compression@^1.8.1: + version "1.8.1" + resolved "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz" + integrity sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w== dependencies: bytes "3.1.2" compressible "~2.0.18" debug "2.6.9" negotiator "~0.6.4" - on-headers "~1.0.2" + on-headers "~1.1.0" safe-buffer "5.2.1" vary "~1.1.2" @@ -6537,11 +7024,6 @@ concat-map@0.0.1: resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -confbox@^0.1.8: - version "0.1.8" - resolved "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz" - integrity sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w== - config-chain@^1.1.11: version "1.1.13" resolved "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz" @@ -6591,16 +7073,16 @@ consola@^2.15.3: integrity sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw== consola@^3.2.3: - version "3.2.3" - resolved "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz" - integrity sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ== + version "3.4.2" + resolved "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz" + integrity sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA== content-disposition@0.5.2: version "0.5.2" resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz" integrity sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA== -content-disposition@0.5.4: +content-disposition@~0.5.4: version "0.5.4" resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz" integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== @@ -6622,20 +7104,20 @@ convert-source-map@^2.0.0: resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" - integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== +cookie-signature@~1.0.6: + version "1.0.7" + resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz" + integrity sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA== -cookie@0.7.1: - version "0.7.1" - resolved "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz" - integrity sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w== +cookie@~0.7.1: + version "0.7.2" + resolved "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz" + integrity sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w== copy-text-to-clipboard@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz" - integrity sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q== + version "3.2.2" + resolved "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.2.tgz" + integrity sha512-T6SqyLd1iLuqPA90J5N4cTalrtovCySh58iiZDGJ6FGznbclKh4UI+FGacQSgFzwKG77W7XT5gwbVEbd9cIH1A== copy-webpack-plugin@^11.0.0: version "11.0.0" @@ -6649,24 +7131,24 @@ copy-webpack-plugin@^11.0.0: schema-utils "^4.0.0" serialize-javascript "^6.0.0" -core-js-compat@^3.38.0, core-js-compat@^3.38.1: - version "3.39.0" - resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz" - integrity sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw== +core-js-compat@^3.43.0, core-js-compat@^3.48.0: + version "3.49.0" + resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.49.0.tgz" + integrity sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA== dependencies: - browserslist "^4.24.2" + browserslist "^4.28.1" -core-js-pure@^3.30.2: - version "3.39.0" - resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.39.0.tgz" - integrity sha512-7fEcWwKI4rJinnK+wLTezeg2smbFFdSBP6E2kQZNbnzM2s1rpKQ6aaRteZSSg7FLU3P0HGGVo/gbpfanU36urg== +core-js-pure@^3.48.0: + version "3.49.0" + resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.49.0.tgz" + integrity sha512-XM4RFka59xATyJv/cS3O3Kml72hQXUeGRuuTmMYFxwzc9/7C8OYTaIR/Ji+Yt8DXzsFLNhat15cE/JP15HrCgw== core-js@^3.22.7, core-js@^3.31.1: - version "3.39.0" - resolved "https://registry.npmjs.org/core-js/-/core-js-3.39.0.tgz" - integrity sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g== + version "3.49.0" + resolved "https://registry.npmjs.org/core-js/-/core-js-3.49.0.tgz" + integrity sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg== -core-util-is@^1.0.3, core-util-is@~1.0.0: +core-util-is@~1.0.0: version "1.0.3" resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== @@ -6723,9 +7205,9 @@ create-require@^1.1.0: integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + version "7.0.6" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" @@ -6870,20 +7352,20 @@ css-declaration-sorter@^6.3.1: integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g== css-declaration-sorter@^7.2.0: - version "7.2.0" - resolved "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz" - integrity sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow== + version "7.4.0" + resolved "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.4.0.tgz" + integrity sha512-LTuzjPoyA2vMGKKcaOqKSp7Ub2eGrNfKiZH4LpezxpNrsICGCSFvsQOI29psISxNZtaXibkC2CXzrQ5enMeGGw== -css-has-pseudo@^7.0.2: - version "7.0.2" - resolved "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-7.0.2.tgz" - integrity sha512-nzol/h+E0bId46Kn2dQH5VElaknX2Sr0hFuB/1EomdC7j+OISt2ZzK7EHX9DZDY53WbIVAR7FYKSO2XnSf07MQ== +css-has-pseudo@^7.0.3: + version "7.0.3" + resolved "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-7.0.3.tgz" + integrity sha512-oG+vKuGyqe/xvEMoxAQrhi7uY16deJR3i7wwhBerVrGQKSqUC5GiOVxTpM9F9B9hw0J+eKeOWLH7E9gZ1Dr5rA== dependencies: "@csstools/selector-specificity" "^5.0.0" postcss-selector-parser "^7.0.0" postcss-value-parser "^4.2.0" -css-loader@^6.7.1, css-loader@^6.8.1: +css-loader@^6.11.0, css-loader@^6.7.1: version "6.11.0" resolved "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz" integrity sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g== @@ -6953,9 +7435,9 @@ css-select@^4.1.3: nth-check "^2.0.1" css-select@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz" - integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== + version "5.2.2" + resolved "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz" + integrity sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw== dependencies: boolbase "^1.0.0" css-what "^6.1.0" @@ -7001,14 +7483,14 @@ css-what@^3.2.1: integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== css-what@^6.0.1, css-what@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz" - integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + version "6.2.2" + resolved "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz" + integrity sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA== -cssdb@^8.2.3: - version "8.2.3" - resolved "https://registry.npmjs.org/cssdb/-/cssdb-8.2.3.tgz" - integrity sha512-9BDG5XmJrJQQnJ51VFxXCAtpZ5ebDlAREmO8sxMOVU0aSxN/gocbctjIG5LMh3WBUq+xTlb/jw2LoljBEqraTA== +cssdb@^8.6.0: + version "8.9.0" + resolved "https://registry.npmjs.org/cssdb/-/cssdb-8.9.0.tgz" + integrity sha512-J8jOU/hLjaXcO1LldOLraJSQpfLXRKof0I7mtbRyOy2AAXgqst0x9rlgi2qXeD6d0ou3ZLqcPAMqYVbpCbrxEw== cssesc@^3.0.0: version "3.0.0" @@ -7169,10 +7651,10 @@ cssstyle@^2.3.0: dependencies: cssom "~0.3.6" -csstype@^3.0.2: - version "3.1.3" - resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz" - integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== +csstype@^3.0.2, csstype@^3.2.2: + version "3.2.3" + resolved "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz" + integrity sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ== cytoscape-cose-bilkent@^4.1.0: version "4.1.0" @@ -7188,10 +7670,10 @@ cytoscape-fcose@^2.2.0: dependencies: cose-base "^2.2.0" -cytoscape@^3.29.2: - version "3.30.3" - resolved "https://registry.npmjs.org/cytoscape/-/cytoscape-3.30.3.tgz" - integrity sha512-HncJ9gGJbVtw7YXtIs3+6YAFSSiKsom0amWc33Z7QbylbY2JGMrA0yz4EwrdTScZxnwclXeEZHzO5pxoy0ZE4g== +cytoscape@^3.33.1: + version "3.33.3" + resolved "https://registry.npmjs.org/cytoscape/-/cytoscape-3.33.3.tgz" + integrity sha512-Gej7U+OKR+LZ8kvX7rb2HhCYJ0IhvEFsnkud4SB1PR+BUY/TsSO0dmOW59WEVLu51b1Rm+gQRKoz4bLYxGSZ2g== "d3-array@1 - 2": version "2.12.1" @@ -7293,9 +7775,9 @@ d3-force@3: d3-timer "1 - 3" "d3-format@1 - 3", d3-format@3: - version "3.1.0" - resolved "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz" - integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA== + version "3.1.2" + resolved "https://registry.npmjs.org/d3-format/-/d3-format-3.1.2.tgz" + integrity sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg== d3-geo@3: version "3.1.1" @@ -7368,7 +7850,7 @@ d3-scale@4: d3-time "2.1.1 - 3" d3-time-format "2 - 4" -"d3-selection@2 - 3", d3-selection@3: +"d3-selection@2 - 3", d3-selection@3, d3-selection@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz" integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ== @@ -7406,7 +7888,7 @@ d3-shape@^1.2.0: resolved "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz" integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA== -"d3-transition@2 - 3", d3-transition@3: +"d3-transition@2 - 3", d3-transition@3, d3-transition@^3.0.1: version "3.0.1" resolved "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz" integrity sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w== @@ -7464,10 +7946,10 @@ d3@^7.9.0: d3-transition "3" d3-zoom "3" -dagre-d3-es@7.0.11: - version "7.0.11" - resolved "https://registry.npmjs.org/dagre-d3-es/-/dagre-d3-es-7.0.11.tgz" - integrity sha512-tvlJLyQf834SylNKax8Wkzco/1ias1OPw8DcUMDE7oUIoSEW25riQVuiu/0OWEFqT0cxHT3Pa9/D82Jr47IONw== +dagre-d3-es@7.0.14: + version "7.0.14" + resolved "https://registry.npmjs.org/dagre-d3-es/-/dagre-d3-es-7.0.14.tgz" + integrity sha512-P4rFMVq9ESWqmOgK+dlXvOtLwYg0i7u0HBGJER0LZDJT2VHIPAMZ/riPxqJceWMStH5+E61QxFra9kIS3AqdMg== dependencies: d3 "^7.9.0" lodash-es "^4.17.21" @@ -7481,37 +7963,37 @@ data-urls@^2.0.0: whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" -data-view-buffer@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz" - integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== +data-view-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz" + integrity sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ== dependencies: - call-bind "^1.0.6" + call-bound "^1.0.3" es-errors "^1.3.0" - is-data-view "^1.0.1" + is-data-view "^1.0.2" -data-view-byte-length@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz" - integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== +data-view-byte-length@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz" + integrity sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ== dependencies: - call-bind "^1.0.7" + call-bound "^1.0.3" es-errors "^1.3.0" - is-data-view "^1.0.1" + is-data-view "^1.0.2" -data-view-byte-offset@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz" - integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== +data-view-byte-offset@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz" + integrity sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ== dependencies: - call-bind "^1.0.6" + call-bound "^1.0.2" es-errors "^1.3.0" is-data-view "^1.0.1" -dayjs@^1.11.10: - version "1.11.13" - resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz" - integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg== +dayjs@^1.11.19: + version "1.11.20" + resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.20.tgz" + integrity sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ== debounce@^1.2.1: version "1.2.1" @@ -7525,22 +8007,22 @@ debug@2.6.9, debug@^2.6.0: dependencies: ms "2.0.0" -debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.6: - version "4.3.7" - resolved "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz" - integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== +debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.4.3: + version "4.4.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz" + integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== dependencies: ms "^2.1.3" decimal.js@^10.2.1: - version "10.4.3" - resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz" - integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== + version "10.6.0" + resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz" + integrity sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg== decode-named-character-reference@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz" - integrity sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg== + version "1.3.0" + resolved "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz" + integrity sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q== dependencies: character-entities "^2.0.0" @@ -7573,6 +8055,19 @@ deepmerge@^4.2.2, deepmerge@^4.3.1: resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz" integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== +default-browser-id@^5.0.0: + version "5.0.1" + resolved "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.1.tgz" + integrity sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q== + +default-browser@^5.2.1: + version "5.5.0" + resolved "https://registry.npmjs.org/default-browser/-/default-browser-5.5.0.tgz" + integrity sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw== + dependencies: + bundle-name "^4.1.0" + default-browser-id "^5.0.0" + default-gateway@^6.0.3: version "6.0.3" resolved "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz" @@ -7604,7 +8099,12 @@ define-lazy-prop@^2.0.0: resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== -define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: +define-lazy-prop@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz" + integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg== + +define-properties@^1.1.3, define-properties@^1.2.1: version "1.2.1" resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz" integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== @@ -7628,9 +8128,9 @@ del@^6.1.1: slash "^3.0.0" delaunator@5: - version "5.0.1" - resolved "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz" - integrity sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw== + version "5.1.0" + resolved "https://registry.npmjs.org/delaunator/-/delaunator-5.1.0.tgz" + integrity sha512-AGrQ4QSgssa1NGmWmLPqN5NY2KajF5MqxetNEO+o0n3ZwZZeTmt7bBnvzHWrmkZFxGgr4HdyFgelzgi06otLuQ== dependencies: robust-predicates "^3.0.2" @@ -7639,7 +8139,7 @@ delayed-stream@~1.0.0: resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== -depd@2.0.0: +depd@2.0.0, depd@~2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz" integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== @@ -7651,7 +8151,7 @@ depd@~1.1.2: deprecation@^2.0.0, deprecation@^2.3.1: version "2.3.1" - resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" + resolved "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz" integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== dequal@^2.0.0: @@ -7659,7 +8159,7 @@ dequal@^2.0.0: resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz" integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== -destroy@1.2.0: +destroy@1.2.0, destroy@~1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz" integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== @@ -7671,10 +8171,10 @@ detab@2.0.4: dependencies: repeat-string "^1.5.4" -detect-libc@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz" - integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== +detect-libc@^2.0.3: + version "2.1.2" + resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz" + integrity sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ== detect-newline@^3.0.0: version "3.1.0" @@ -7715,9 +8215,9 @@ diff-sequences@^27.5.1: integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== diff@^4.0.1: - version "4.0.2" - resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + version "4.0.4" + resolved "https://registry.npmjs.org/diff/-/diff-4.0.4.tgz" + integrity sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ== dir-glob@^3.0.1: version "3.0.1" @@ -7840,10 +8340,12 @@ domhandler@^5.0.2, domhandler@^5.0.3: dependencies: domelementtype "^2.3.0" -"dompurify@^3.0.11 <3.1.7": - version "3.1.6" - resolved "https://registry.npmjs.org/dompurify/-/dompurify-3.1.6.tgz" - integrity sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ== +dompurify@^3.3.1: + version "3.4.3" + resolved "https://registry.npmjs.org/dompurify/-/dompurify-3.4.3.tgz" + integrity sha512-VVwJidIJcp1hpg2OMXML3ZVRPYSZiq4aX7qBh83BSIpOaRDqI+qxhXjjIWnpzkOXhmp0L81lnoME1mnCc9H48A== + optionalDependencies: + "@types/trusted-types" "^2.0.7" domutils@^1.7.0: version "1.7.0" @@ -7863,9 +8365,9 @@ domutils@^2.5.2, domutils@^2.8.0: domhandler "^4.2.0" domutils@^3.0.1: - version "3.1.0" - resolved "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz" - integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== + version "3.2.2" + resolved "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz" + integrity sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw== dependencies: dom-serializer "^2.0.0" domelementtype "^2.3.0" @@ -7895,12 +8397,12 @@ dot-prop@^6.0.1: dotenv@^10.0.0: version "10.0.0" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz" integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== -dunder-proto@^1.0.1: +dunder-proto@^1.0.0, dunder-proto@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" + resolved "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz" integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== dependencies: call-bind-apply-helpers "^1.0.1" @@ -7924,7 +8426,7 @@ eastasianwidth@^0.2.0: ecdsa-sig-formatter@1.0.11: version "1.0.11" - resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" + resolved "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz" integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== dependencies: safe-buffer "^5.0.1" @@ -7934,10 +8436,10 @@ ee-first@1.1.1: resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== -electron-to-chromium@^1.5.41: - version "1.5.50" - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.50.tgz" - integrity sha512-eMVObiUQ2LdgeO1F/ySTXsvqvxb6ZH2zPGaMYsWzRDdOddUa77tdmI0ltg+L16UpbWdhPmuF3wIQYyQq65WfZw== +electron-to-chromium@^1.5.328: + version "1.5.356" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.356.tgz" + integrity sha512-9NgFd7m5t5MCJ5rUSjJITUXAH9mEGlrlofnMf4YEr+pz6JlP7cWmTAH+JFmbPnaSW8koVTkuW7pacORWAnA5Yw== emittery@^0.8.1: version "0.8.1" @@ -7976,44 +8478,44 @@ emoticon@^4.0.1: enabled@2.0.x: version "2.0.0" - resolved "https://registry.yarnpkg.com/enabled/-/enabled-2.0.0.tgz#f9dd92ec2d6f4bbc0d5d1e64e21d61cd4665e7c2" + resolved "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz" integrity sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ== -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" - integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== - encodeurl@~2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz" integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== end-of-stream@^1.1.0: - version "1.4.4" - resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + version "1.4.5" + resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz" + integrity sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg== dependencies: once "^1.4.0" -enhanced-resolve@^5.17.1: - version "5.17.1" - resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz" - integrity sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg== +enhanced-resolve@^5.20.0: + version "5.21.3" + resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.3.tgz" + integrity sha512-QyL119InA+XXEkNLNTPCXPugSvOfhwv0JOlGNzvxs0hZaiHLNvXSpudUWsOlsXGWJh8G6ckCScEkVHfX3kw/2Q== dependencies: graceful-fs "^4.2.4" - tapable "^2.2.0" + tapable "^2.3.3" entities@^2.0.0: version "2.2.0" resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== -entities@^4.2.0, entities@^4.4.0, entities@^4.5.0: +entities@^4.2.0, entities@^4.4.0: version "4.5.0" resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== +entities@^6.0.0: + version "6.0.1" + resolved "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz" + integrity sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g== + env-cmd@^10.1.0: version "10.1.0" resolved "https://registry.npmjs.org/env-cmd/-/env-cmd-10.1.0.tgz" @@ -8028,122 +8530,107 @@ env-paths@^3.0.0: integrity sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A== envinfo@^7.7.3: - version "7.14.0" - resolved "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz" - integrity sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg== + version "7.21.0" + resolved "https://registry.npmjs.org/envinfo/-/envinfo-7.21.0.tgz" + integrity sha512-Lw7I8Zp5YKHFCXL7+Dz95g4CcbMEpgvqZNNq3AmlT5XAV6CgAAk6gyAMqn2zjw08K9BHfcNuKrMiCPLByGafow== error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + version "1.3.4" + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz" + integrity sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ== dependencies: is-arrayish "^0.2.1" -es-abstract@^1.17.2, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.2: - version "1.23.3" - resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz" - integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== +es-abstract@^1.17.2, es-abstract@^1.23.5, es-abstract@^1.23.9, es-abstract@^1.24.0: + version "1.24.2" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.2.tgz" + integrity sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg== dependencies: - array-buffer-byte-length "^1.0.1" - arraybuffer.prototype.slice "^1.0.3" + array-buffer-byte-length "^1.0.2" + arraybuffer.prototype.slice "^1.0.4" available-typed-arrays "^1.0.7" - call-bind "^1.0.7" - data-view-buffer "^1.0.1" - data-view-byte-length "^1.0.1" - data-view-byte-offset "^1.0.0" - es-define-property "^1.0.0" + call-bind "^1.0.8" + call-bound "^1.0.4" + data-view-buffer "^1.0.2" + data-view-byte-length "^1.0.2" + data-view-byte-offset "^1.0.1" + es-define-property "^1.0.1" es-errors "^1.3.0" - es-object-atoms "^1.0.0" - es-set-tostringtag "^2.0.3" - es-to-primitive "^1.2.1" - function.prototype.name "^1.1.6" - get-intrinsic "^1.2.4" - get-symbol-description "^1.0.2" - globalthis "^1.0.3" - gopd "^1.0.1" + es-object-atoms "^1.1.1" + es-set-tostringtag "^2.1.0" + es-to-primitive "^1.3.0" + function.prototype.name "^1.1.8" + get-intrinsic "^1.3.0" + get-proto "^1.0.1" + get-symbol-description "^1.1.0" + globalthis "^1.0.4" + gopd "^1.2.0" has-property-descriptors "^1.0.2" - has-proto "^1.0.3" - has-symbols "^1.0.3" + has-proto "^1.2.0" + has-symbols "^1.1.0" hasown "^2.0.2" - internal-slot "^1.0.7" - is-array-buffer "^3.0.4" + internal-slot "^1.1.0" + is-array-buffer "^3.0.5" is-callable "^1.2.7" - is-data-view "^1.0.1" + is-data-view "^1.0.2" is-negative-zero "^2.0.3" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.3" - is-string "^1.0.7" - is-typed-array "^1.1.13" - is-weakref "^1.0.2" - object-inspect "^1.13.1" + is-regex "^1.2.1" + is-set "^2.0.3" + is-shared-array-buffer "^1.0.4" + is-string "^1.1.1" + is-typed-array "^1.1.15" + is-weakref "^1.1.1" + math-intrinsics "^1.1.0" + object-inspect "^1.13.4" object-keys "^1.1.1" - object.assign "^4.1.5" - regexp.prototype.flags "^1.5.2" - safe-array-concat "^1.1.2" - safe-regex-test "^1.0.3" - string.prototype.trim "^1.2.9" - string.prototype.trimend "^1.0.8" + object.assign "^4.1.7" + own-keys "^1.0.1" + regexp.prototype.flags "^1.5.4" + safe-array-concat "^1.1.3" + safe-push-apply "^1.0.0" + safe-regex-test "^1.1.0" + set-proto "^1.0.0" + stop-iteration-iterator "^1.1.0" + string.prototype.trim "^1.2.10" + string.prototype.trimend "^1.0.9" string.prototype.trimstart "^1.0.8" - typed-array-buffer "^1.0.2" - typed-array-byte-length "^1.0.1" - typed-array-byte-offset "^1.0.2" - typed-array-length "^1.0.6" - unbox-primitive "^1.0.2" - which-typed-array "^1.1.15" + typed-array-buffer "^1.0.3" + typed-array-byte-length "^1.0.3" + typed-array-byte-offset "^1.0.4" + typed-array-length "^1.0.7" + unbox-primitive "^1.1.0" + which-typed-array "^1.1.19" es-array-method-boxes-properly@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz" integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== -es-define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz" - integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== - dependencies: - get-intrinsic "^1.2.4" - -es-define-property@^1.0.1: +es-define-property@^1.0.0, es-define-property@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" + resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz" integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== -es-errors@^1.2.1, es-errors@^1.3.0: +es-errors@^1.3.0: version "1.3.0" resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== -es-module-lexer@^1.2.1: - version "1.5.4" - resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz" - integrity sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw== - -es-object-atoms@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz" - integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== - dependencies: - es-errors "^1.3.0" +es-module-lexer@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.1.0.tgz" + integrity sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ== -es-object-atoms@^1.1.1: +es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1" + resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz" integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== dependencies: es-errors "^1.3.0" -es-set-tostringtag@^2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz" - integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== - dependencies: - get-intrinsic "^1.2.4" - has-tostringtag "^1.0.2" - hasown "^2.0.1" - es-set-tostringtag@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz#f31dbbe0c183b00a6d26eb6325c810c0fd18bd4d" + resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz" integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA== dependencies: es-errors "^1.3.0" @@ -8151,14 +8638,19 @@ es-set-tostringtag@^2.1.0: has-tostringtag "^1.0.2" hasown "^2.0.2" -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== +es-to-primitive@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz" + integrity sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g== dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" + is-callable "^1.2.7" + is-date-object "^1.0.5" + is-symbol "^1.0.4" + +es-toolkit@^1.45.1: + version "1.46.1" + resolved "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.46.1.tgz" + integrity sha512-5eNtXOs3tbfxXOj04tjjseeWkRWaoCjdEI+96DgwzZoe6c9juL49pXlzAFTI72aWC9Y8p7168g6XIKjh7k6pyQ== esast-util-from-estree@^2.0.0: version "2.0.0" @@ -8301,9 +8793,9 @@ estree-util-to-js@^2.0.0: source-map "^0.7.0" estree-util-value-to-estree@^3.0.1: - version "3.1.2" - resolved "https://registry.npmjs.org/estree-util-value-to-estree/-/estree-util-value-to-estree-3.1.2.tgz" - integrity sha512-S0gW2+XZkmsx00tU2uJ4L9hUT7IFabbml9pHh2WQqFmAbxit++YGZne0sKJbNwkj9Wvg9E4uqWl4nCIFQMmfag== + version "3.5.0" + resolved "https://registry.npmjs.org/estree-util-value-to-estree/-/estree-util-value-to-estree-3.5.0.tgz" + integrity sha512-aMV56R27Gv3QmfmF1MY12GWkGzzeAezAX+UplqHVASfjc9wNzI/X6hC0S9oxq61WT4aQesLGslWP9tKk6ghRZQ== dependencies: "@types/estree" "^1.0.0" @@ -8352,7 +8844,7 @@ eval@^0.1.8: eventemitter3@^3.1.0: version "3.1.2" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz" integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q== eventemitter3@^4.0.0, eventemitter3@^4.0.4: @@ -8362,7 +8854,7 @@ eventemitter3@^4.0.0, eventemitter3@^4.0.4: events@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" + resolved "https://registry.npmjs.org/events/-/events-1.1.1.tgz" integrity sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw== events@^3.2.0: @@ -8370,7 +8862,7 @@ events@^3.2.0: resolved "https://registry.npmjs.org/events/-/events-3.3.0.tgz" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== -execa@^5.0.0: +execa@^5.0.0, execa@^5.1.1: version "5.1.1" resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== @@ -8405,39 +8897,39 @@ expect@^27.5.1: jest-matcher-utils "^27.5.1" jest-message-util "^27.5.1" -express@^4.17.3: - version "4.21.1" - resolved "https://registry.npmjs.org/express/-/express-4.21.1.tgz" - integrity sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ== +express@^4.17.3, express@^4.22.1: + version "4.22.2" + resolved "https://registry.npmjs.org/express/-/express-4.22.2.tgz" + integrity sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q== dependencies: accepts "~1.3.8" array-flatten "1.1.1" - body-parser "1.20.3" - content-disposition "0.5.4" + body-parser "~1.20.5" + content-disposition "~0.5.4" content-type "~1.0.4" - cookie "0.7.1" - cookie-signature "1.0.6" + cookie "~0.7.1" + cookie-signature "~1.0.6" debug "2.6.9" depd "2.0.0" encodeurl "~2.0.0" escape-html "~1.0.3" etag "~1.8.1" - finalhandler "1.3.1" - fresh "0.5.2" - http-errors "2.0.0" + finalhandler "~1.3.1" + fresh "~0.5.2" + http-errors "~2.0.0" merge-descriptors "1.0.3" methods "~1.1.2" - on-finished "2.4.1" + on-finished "~2.4.1" parseurl "~1.3.3" - path-to-regexp "0.1.10" + path-to-regexp "~0.1.12" proxy-addr "~2.0.7" - qs "6.13.0" + qs "~6.15.1" range-parser "~1.2.1" safe-buffer "5.2.1" - send "0.19.0" - serve-static "1.16.2" + send "~0.19.0" + serve-static "~1.16.2" setprototypeof "1.2.0" - statuses "2.0.1" + statuses "~2.0.1" type-is "~1.6.18" utils-merge "1.0.1" vary "~1.1.2" @@ -8460,24 +8952,13 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-equals@^5.2.2: - version "5.2.2" - resolved "https://registry.npmjs.org/fast-equals/-/fast-equals-5.2.2.tgz" - integrity sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw== - -fast-glob@^3.2.11, fast-glob@^3.2.9, fast-glob@^3.3.0: - version "3.3.2" - resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz" - integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" + version "5.4.0" + resolved "https://registry.npmjs.org/fast-equals/-/fast-equals-5.4.0.tgz" + integrity sha512-jt2DW/aNFNwke7AUd+Z+e6pz39KO5rzdbbFCg2sGafS4mk13MI7Z8O5z9cADNn5lhGODIgLwug6TZO2ctf7kcw== -fast-glob@~3.3: +fast-glob@^3.2.11, fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@~3.3: version "3.3.3" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz#d06d585ce8dba90a16b0505c543c3ccfb3aeb818" + resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz" integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg== dependencies: "@nodelib/fs.stat" "^2.0.2" @@ -8492,9 +8973,9 @@ fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-sta integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== fast-uri@^3.0.1: - version "3.0.3" - resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz" - integrity sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw== + version "3.1.2" + resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz" + integrity sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ== fastest-levenshtein@^1.0.12: version "1.0.16" @@ -8502,15 +8983,15 @@ fastest-levenshtein@^1.0.12: integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== fastq@^1.6.0: - version "1.17.1" - resolved "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz" - integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + version "1.20.1" + resolved "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz" + integrity sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw== dependencies: reusify "^1.0.4" fault@^1.0.0: version "1.0.4" - resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13" + resolved "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz" integrity sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA== dependencies: format "^0.2.0" @@ -8536,14 +9017,14 @@ fb-watchman@^2.0.0: dependencies: bser "2.1.1" -fdir@^6.4.4: - version "6.4.4" - resolved "https://registry.npmjs.org/fdir/-/fdir-6.4.4.tgz" - integrity sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg== +fdir@^6.5.0: + version "6.5.0" + resolved "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz" + integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg== fecha@^4.2.0: version "4.2.3" - resolved "https://registry.yarnpkg.com/fecha/-/fecha-4.2.3.tgz#4d9ccdbc61e8629b259fdca67e65891448d569fd" + resolved "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz" integrity sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw== feed@^4.2.2: @@ -8553,13 +9034,6 @@ feed@^4.2.2: dependencies: xml-js "^1.6.11" -figures@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== - dependencies: - escape-string-regexp "^1.0.5" - file-entry-cache@^9.1.0: version "9.1.0" resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-9.1.0.tgz" @@ -8587,17 +9061,17 @@ fill-range@^7.1.1: dependencies: to-regex-range "^5.0.1" -finalhandler@1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz" - integrity sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ== +finalhandler@~1.3.1: + version "1.3.2" + resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz" + integrity sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg== dependencies: debug "2.6.9" encodeurl "~2.0.0" escape-html "~1.0.3" - on-finished "2.4.1" + on-finished "~2.4.1" parseurl "~1.3.3" - statuses "2.0.1" + statuses "~2.0.2" unpipe "~1.0.0" find-cache-dir@^3.3.1: @@ -8667,35 +9141,23 @@ flat@^5.0.2: integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== flatted@^3.3.1: - version "3.3.3" - resolved "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz" - integrity sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg== + version "3.4.2" + resolved "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz" + integrity sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA== fn.name@1.x.x: version "1.1.0" - resolved "https://registry.yarnpkg.com/fn.name/-/fn.name-1.1.0.tgz#26cad8017967aea8731bc42961d04a3d5988accc" + resolved "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz" integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== -follow-redirects@^1.0.0, follow-redirects@^1.14.7: - version "1.15.9" - resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz" - integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ== - -follow-redirects@^1.16.0: +follow-redirects@^1.0.0, follow-redirects@^1.14.7, follow-redirects@^1.16.0: version "1.16.0" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.16.0.tgz#28474a159d3b9d11ef62050a14ed60e4df6d61bc" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz" integrity sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw== -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== - dependencies: - is-callable "^1.1.3" - -for-each@^0.3.5: +for-each@^0.3.3, for-each@^0.3.5: version "0.3.5" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.5.tgz#d650688027826920feeb0af747ee7b9421a41d47" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz" integrity sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg== dependencies: is-callable "^1.2.7" @@ -8726,7 +9188,7 @@ form-data-encoder@^2.1.2: form-data@^2.5.0: version "2.5.5" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.5.5.tgz#a5f6364ad7e4e67e95b4a07e2d8c6f711c74f624" + resolved "https://registry.npmjs.org/form-data/-/form-data-2.5.5.tgz" integrity sha512-jqdObeR2rxZZbPSGL+3VckHMYtu+f9//KXBsVny6JSX/pa38Fy+bGjuG8eW/H6USNQWhLi8Num++cU2yOCNz4A== dependencies: asynckit "^0.4.0" @@ -8747,7 +9209,7 @@ form-data@^3.0.0: form-data@^4.0.5: version "4.0.5" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.5.tgz#b49e48858045ff4cbf6b03e1805cebcad3679053" + resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz" integrity sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w== dependencies: asynckit "^0.4.0" @@ -8766,12 +9228,12 @@ forwarded@0.2.0: resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz" integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== -fraction.js@^4.3.7: - version "4.3.7" - resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz" - integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== +fraction.js@^5.3.4: + version "5.3.4" + resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz" + integrity sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ== -fresh@0.5.2: +fresh@~0.5.2: version "0.5.2" resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== @@ -8786,9 +9248,9 @@ fs-extra@^10.1.0: universalify "^2.0.0" fs-extra@^11.1.1, fs-extra@^11.2.0: - version "11.2.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz" - integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw== + version "11.3.5" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.5.tgz" + integrity sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg== dependencies: graceful-fs "^4.2.0" jsonfile "^6.0.1" @@ -8805,9 +9267,9 @@ fs-extra@^9.0.0: universalify "^2.0.0" fs-monkey@^1.0.4: - version "1.0.6" - resolved "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz" - integrity sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg== + version "1.1.0" + resolved "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.1.0.tgz" + integrity sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw== fs.realpath@^1.0.0: version "1.0.0" @@ -8816,12 +9278,12 @@ fs.realpath@^1.0.0: fs@^0.0.1-security: version "0.0.1-security" - resolved "https://registry.yarnpkg.com/fs/-/fs-0.0.1-security.tgz#8a7bd37186b6dddf3813f23858b57ecaaf5e41d4" + resolved "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz" integrity sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w== fsevents@^2.3.2, fsevents@~2.3.2: version "2.3.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz" integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== function-bind@^1.1.2: @@ -8829,15 +9291,17 @@ function-bind@^1.1.2: resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== -function.prototype.name@^1.1.6: - version "1.1.6" - resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz" - integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== +function.prototype.name@^1.1.6, function.prototype.name@^1.1.8: + version "1.1.8" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz" + integrity sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.8" + call-bound "^1.0.3" + define-properties "^1.2.1" functions-have-names "^1.2.3" + hasown "^2.0.2" + is-callable "^1.2.7" functions-have-names@^1.2.3: version "1.2.3" @@ -8846,7 +9310,7 @@ functions-have-names@^1.2.3: generator-function@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/generator-function/-/generator-function-2.0.1.tgz#0e75dd410d1243687a0ba2e951b94eedb8f737a2" + resolved "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz" integrity sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g== gensequence@^7.0.0: @@ -8864,20 +9328,9 @@ get-caller-file@^2.0.5: resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: - version "1.2.4" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz" - integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== - dependencies: - es-errors "^1.3.0" - function-bind "^1.1.2" - has-proto "^1.0.1" - has-symbols "^1.0.3" - hasown "^2.0.0" - -get-intrinsic@^1.2.6, get-intrinsic@^1.3.0: +get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.2.7, get-intrinsic@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz" integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== dependencies: call-bind-apply-helpers "^1.0.2" @@ -8903,7 +9356,7 @@ get-package-type@^0.1.0: get-proto@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1" + resolved "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz" integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== dependencies: dunder-proto "^1.0.1" @@ -8928,14 +9381,14 @@ get-stream@^6.0.0, get-stream@^6.0.1: resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== -get-symbol-description@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz" - integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== +get-symbol-description@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz" + integrity sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg== dependencies: - call-bind "^1.0.5" + call-bound "^1.0.3" es-errors "^1.3.0" - get-intrinsic "^1.2.4" + get-intrinsic "^1.2.6" github-slugger@^1.4.0, github-slugger@^1.5.0: version "1.5.0" @@ -8956,6 +9409,11 @@ glob-parent@^6.0.1: dependencies: is-glob "^4.0.3" +glob-to-regex.js@^1.0.0, glob-to-regex.js@^1.0.1: + version "1.2.0" + resolved "https://registry.npmjs.org/glob-to-regex.js/-/glob-to-regex.js-1.2.0.tgz" + integrity sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ== + glob-to-regexp@^0.4.1: version "0.4.1" resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz" @@ -9003,12 +9461,7 @@ global-prefix@^3.0.0: kind-of "^6.0.2" which "^1.3.1" -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globalthis@^1.0.3: +globalthis@^1.0.4: version "1.0.4" resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz" integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== @@ -9039,16 +9492,9 @@ globby@^13.1.1: merge2 "^1.4.1" slash "^4.0.0" -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" - -gopd@^1.2.0: +gopd@^1.0.1, gopd@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" + resolved "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz" integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== got@^12.1.0: @@ -9122,10 +9568,10 @@ handle-thing@^2.0.0: resolved "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz" integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== -has-bigints@^1.0.1, has-bigints@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz" - integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== +has-bigints@^1.0.2: + version "1.1.0" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz" + integrity sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg== has-flag@^3.0.0: version "3.0.0" @@ -9137,11 +9583,6 @@ has-flag@^4.0.0: resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-own-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz" - integrity sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ== - has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz" @@ -9149,22 +9590,19 @@ has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: dependencies: es-define-property "^1.0.0" -has-proto@^1.0.1, has-proto@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz" - integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== - -has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-proto@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz" + integrity sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ== + dependencies: + dunder-proto "^1.0.0" -has-symbols@^1.1.0: +has-symbols@^1.0.1, has-symbols@^1.0.3, has-symbols@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz" integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== -has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: +has-tostringtag@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz" integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== @@ -9181,10 +9619,10 @@ has-yarn@^3.0.0: resolved "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz" integrity sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA== -hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" - integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== +hasown@^2.0.2, hasown@^2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz" + integrity sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg== dependencies: function-bind "^1.1.2" @@ -9225,15 +9663,15 @@ hast-util-from-parse5@^6.0.0: web-namespaces "^1.0.0" hast-util-from-parse5@^8.0.0: - version "8.0.1" - resolved "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.1.tgz" - integrity sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ== + version "8.0.3" + resolved "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz" + integrity sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg== dependencies: "@types/hast" "^3.0.0" "@types/unist" "^3.0.0" devlop "^1.0.0" - hastscript "^8.0.0" - property-information "^6.0.0" + hastscript "^9.0.0" + property-information "^7.0.0" vfile "^6.0.0" vfile-location "^5.0.0" web-namespaces "^2.0.0" @@ -9267,9 +9705,9 @@ hast-util-raw@6.0.1: zwitch "^1.0.0" hast-util-raw@^9.0.0: - version "9.0.4" - resolved "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.0.4.tgz" - integrity sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA== + version "9.1.0" + resolved "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz" + integrity sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw== dependencies: "@types/hast" "^3.0.0" "@types/unist" "^3.0.0" @@ -9286,9 +9724,9 @@ hast-util-raw@^9.0.0: zwitch "^2.0.0" hast-util-to-estree@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.0.tgz" - integrity sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw== + version "3.1.3" + resolved "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.3.tgz" + integrity sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w== dependencies: "@types/estree" "^1.0.0" "@types/estree-jsx" "^1.0.0" @@ -9301,16 +9739,16 @@ hast-util-to-estree@^3.0.0: mdast-util-mdx-expression "^2.0.0" mdast-util-mdx-jsx "^3.0.0" mdast-util-mdxjs-esm "^2.0.0" - property-information "^6.0.0" + property-information "^7.0.0" space-separated-tokens "^2.0.0" - style-to-object "^0.4.0" + style-to-js "^1.0.0" unist-util-position "^5.0.0" zwitch "^2.0.0" hast-util-to-jsx-runtime@^2.0.0: - version "2.3.2" - resolved "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.2.tgz" - integrity sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg== + version "2.3.6" + resolved "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz" + integrity sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg== dependencies: "@types/estree" "^1.0.0" "@types/hast" "^3.0.0" @@ -9322,9 +9760,9 @@ hast-util-to-jsx-runtime@^2.0.0: mdast-util-mdx-expression "^2.0.0" mdast-util-mdx-jsx "^3.0.0" mdast-util-mdxjs-esm "^2.0.0" - property-information "^6.0.0" + property-information "^7.0.0" space-separated-tokens "^2.0.0" - style-to-object "^1.0.0" + style-to-js "^1.0.0" unist-util-position "^5.0.0" vfile-message "^4.0.0" @@ -9340,14 +9778,14 @@ hast-util-to-parse5@^6.0.0: zwitch "^1.0.0" hast-util-to-parse5@^8.0.0: - version "8.0.0" - resolved "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz" - integrity sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw== + version "8.0.1" + resolved "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz" + integrity sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA== dependencies: "@types/hast" "^3.0.0" comma-separated-tokens "^2.0.0" devlop "^1.0.0" - property-information "^6.0.0" + property-information "^7.0.0" space-separated-tokens "^2.0.0" web-namespaces "^2.0.0" zwitch "^2.0.0" @@ -9380,20 +9818,20 @@ hastscript@^6.0.0: property-information "^5.0.0" space-separated-tokens "^1.0.0" -hastscript@^8.0.0: - version "8.0.0" - resolved "https://registry.npmjs.org/hastscript/-/hastscript-8.0.0.tgz" - integrity sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw== +hastscript@^9.0.0: + version "9.0.1" + resolved "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz" + integrity sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w== dependencies: "@types/hast" "^3.0.0" comma-separated-tokens "^2.0.0" hast-util-parse-selector "^4.0.0" - property-information "^6.0.0" + property-information "^7.0.0" space-separated-tokens "^2.0.0" hcl2-parser@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/hcl2-parser/-/hcl2-parser-1.0.3.tgz#096d0ff5a3c46707ace54fcb7571317f5828ff0e" + resolved "https://registry.npmjs.org/hcl2-parser/-/hcl2-parser-1.0.3.tgz" integrity sha512-NQUm/BFF+2nrBfeqDhhsy4DxxiLHgkeE3FywtjFiXnjSUaio3w4Tz1MQ3vGJBUhyArzOXJ24pO7JwE5LAn7Ncg== he@1.2.0, he@^1.2.0: @@ -9438,9 +9876,9 @@ html-encoding-sniffer@^2.0.1: whatwg-encoding "^1.0.5" html-entities@^2.3.2: - version "2.5.2" - resolved "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz" - integrity sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA== + version "2.6.0" + resolved "https://registry.npmjs.org/html-entities/-/html-entities-2.6.0.tgz" + integrity sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ== html-escaper@^2.0.0, html-escaper@^2.0.2: version "2.0.2" @@ -9489,9 +9927,9 @@ html-void-elements@^3.0.0: integrity sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg== html-webpack-plugin@^5.5.0, html-webpack-plugin@^5.6.0: - version "5.6.3" - resolved "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz" - integrity sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg== + version "5.6.7" + resolved "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.7.tgz" + integrity sha512-md+vXtdCAe60s1k6AU3dUyMJnDxUyQAwfwPKoLisvgUF1IXjtlLsk2se54+qfL9Mdm26bbwvjJybpNx48NKRLw== dependencies: "@types/html-minifier-terser" "^6.0.0" html-minifier-terser "^6.0.2" @@ -9520,40 +9958,41 @@ htmlparser2@^8.0.1: entities "^4.4.0" http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz" - integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== + version "4.2.0" + resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz" + integrity sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ== http-deceiver@^1.2.7: version "1.2.7" resolved "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz" integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== -http-errors@2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz" - integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== +http-errors@~1.8.0: + version "1.8.1" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz" + integrity sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g== dependencies: - depd "2.0.0" + depd "~1.1.2" inherits "2.0.4" setprototypeof "1.2.0" - statuses "2.0.1" + statuses ">= 1.5.0 < 2" toidentifier "1.0.1" -http-errors@~1.6.2: - version "1.6.3" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz" - integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== +http-errors@~2.0.0, http-errors@~2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz" + integrity sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ== dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.0" - statuses ">= 1.4.0 < 2" + depd "~2.0.0" + inherits "~2.0.4" + setprototypeof "~1.2.0" + statuses "~2.0.2" + toidentifier "~1.0.1" http-parser-js@>=0.5.1: - version "0.5.8" - resolved "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz" - integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== + version "0.5.10" + resolved "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz" + integrity sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA== http-proxy-agent@^4.0.1: version "4.0.1" @@ -9564,10 +10003,10 @@ http-proxy-agent@^4.0.1: agent-base "6" debug "4" -http-proxy-middleware@^2.0.3: - version "2.0.7" - resolved "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz" - integrity sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA== +http-proxy-middleware@^2.0.3, http-proxy-middleware@^2.0.9: + version "2.0.9" + resolved "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.9.tgz" + integrity sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q== dependencies: "@types/http-proxy" "^1.17.8" http-proxy "^1.18.1" @@ -9592,7 +10031,7 @@ http2-wrapper@^2.1.10: quick-lru "^5.1.1" resolve-alpn "^1.2.0" -https-proxy-agent@^5.0.0: +https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1: version "5.0.1" resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== @@ -9610,7 +10049,12 @@ husky@^9.1.7: resolved "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz" integrity sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA== -iconv-lite@0.4.24: +hyperdyperid@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz" + integrity sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A== + +iconv-lite@0.4.24, iconv-lite@~0.4.24: version "0.4.24" resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== @@ -9631,7 +10075,7 @@ icss-utils@^5.0.0, icss-utils@^5.1.0: ieee754@1.1.13: version "1.1.13" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz" integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== ieee754@^1.1.4, ieee754@^1.2.1: @@ -9644,13 +10088,18 @@ ignore@^5.1.4, ignore@^5.2.0, ignore@^5.2.4: resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz" integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== -image-size@^1.0.1, image-size@^1.0.2: - version "1.1.1" - resolved "https://registry.npmjs.org/image-size/-/image-size-1.1.1.tgz" - integrity sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ== +image-size@^1.0.1: + version "1.2.1" + resolved "https://registry.npmjs.org/image-size/-/image-size-1.2.1.tgz" + integrity sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw== dependencies: queue "6.0.2" +image-size@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/image-size/-/image-size-2.0.2.tgz" + integrity sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w== + immer@^9.0.7: version "9.0.21" resolved "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz" @@ -9682,10 +10131,10 @@ import-local@^3.0.2: pkg-dir "^4.2.0" resolve-cwd "^3.0.0" -import-meta-resolve@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz" - integrity sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw== +import-meta-resolve@^4.1.0, import-meta-resolve@^4.2.0: + version "4.2.0" + resolved "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz" + integrity sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg== imurmurhash@^0.1.4: version "0.1.4" @@ -9710,16 +10159,16 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -inherits@2.0.3: +inherits@2, inherits@2.0.3, inherits@^2.0.0, inherits@^2.0.3: version "2.0.3" resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== +inherits@2.0.4, inherits@^2.0.1, inherits@~2.0.3, inherits@~2.0.4: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + ini@2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz" @@ -9740,26 +10189,21 @@ inline-style-parser@0.1.1: resolved "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz" integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== -inline-style-parser@0.2.4: - version "0.2.4" - resolved "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.4.tgz" - integrity sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q== +inline-style-parser@0.2.7: + version "0.2.7" + resolved "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz" + integrity sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA== -internal-slot@^1.0.7: - version "1.0.7" - resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz" - integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== +internal-slot@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz" + integrity sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw== dependencies: es-errors "^1.3.0" - hasown "^2.0.0" - side-channel "^1.0.4" - -"internmap@1 - 2": - version "2.0.3" - resolved "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz" - integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== + hasown "^2.0.2" + side-channel "^1.1.0" -internmap@^1.0.0: +"internmap@1 - 2", internmap@^1.0.0: version "1.0.1" resolved "https://registry.npmjs.org/internmap/-/internmap-1.0.1.tgz" integrity sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw== @@ -9786,10 +10230,10 @@ ipaddr.js@1.9.1: resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== -ipaddr.js@^2.0.1: - version "2.2.0" - resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz" - integrity sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA== +ipaddr.js@^2.0.1, ipaddr.js@^2.1.0: + version "2.4.0" + resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.4.0.tgz" + integrity sha512-9VGk3HGanVE6JoZXHiCpnGy5X0jYDnN4EA4lntFPj+1vIWlFhIylq2CrrCOJH9EAhc5CYhq18F2Av2tgoAPsYQ== is-alphabetical@1.0.4, is-alphabetical@^1.0.0: version "1.0.4" @@ -9819,31 +10263,43 @@ is-alphanumerical@^2.0.0: is-arguments@^1.0.4: version "1.2.0" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.2.0.tgz#ad58c6aecf563b78ef2bf04df540da8f5d7d8e1b" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz" integrity sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA== dependencies: call-bound "^1.0.2" has-tostringtag "^1.0.2" -is-array-buffer@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz" - integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== +is-array-buffer@^3.0.4, is-array-buffer@^3.0.5: + version "3.0.5" + resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz" + integrity sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A== dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.2.1" + call-bind "^1.0.8" + call-bound "^1.0.3" + get-intrinsic "^1.2.6" is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== +is-async-function@^2.0.0: + version "2.1.1" + resolved "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz" + integrity sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ== + dependencies: + async-function "^1.0.0" + call-bound "^1.0.3" + get-proto "^1.0.1" + has-tostringtag "^1.0.2" + safe-regex-test "^1.1.0" + +is-bigint@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz" + integrity sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ== dependencies: - has-bigints "^1.0.1" + has-bigints "^1.0.2" is-binary-path@~2.1.0: version "2.1.0" @@ -9852,20 +10308,20 @@ is-binary-path@~2.1.0: dependencies: binary-extensions "^2.0.0" -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== +is-boolean-object@^1.2.1: + version "1.2.2" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz" + integrity sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A== dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" + call-bound "^1.0.3" + has-tostringtag "^1.0.2" is-buffer@^2.0.0: version "2.0.5" resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz" integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: +is-callable@^1.2.7: version "1.2.7" resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== @@ -9884,26 +10340,29 @@ is-ci@^3.0.1: dependencies: ci-info "^3.2.0" -is-core-module@^2.13.0: - version "2.15.1" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz" - integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ== +is-core-module@^2.16.1: + version "2.16.2" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.2.tgz" + integrity sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA== dependencies: - hasown "^2.0.2" + hasown "^2.0.3" -is-data-view@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz" - integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== +is-data-view@^1.0.1, is-data-view@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz" + integrity sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw== dependencies: + call-bound "^1.0.2" + get-intrinsic "^1.2.6" is-typed-array "^1.1.13" -is-date-object@^1.0.1: - version "1.0.5" - resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== +is-date-object@^1.0.5, is-date-object@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz" + integrity sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg== dependencies: - has-tostringtag "^1.0.0" + call-bound "^1.0.2" + has-tostringtag "^1.0.2" is-decimal@^1.0.0: version "1.0.4" @@ -9920,9 +10379,14 @@ is-docker@^2.0.0, is-docker@^2.1.1: resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== +is-docker@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz" + integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ== + is-electron@2.2.2: version "2.2.2" - resolved "https://registry.yarnpkg.com/is-electron/-/is-electron-2.2.2.tgz#3778902a2044d76de98036f5dc58089ac4d80bb9" + resolved "https://registry.npmjs.org/is-electron/-/is-electron-2.2.2.tgz" integrity sha512-FO/Rhvz5tuw4MCWkpMzHFKWD2LsfHzIb7i6MdPYZ/KW7AlxawyLkqdy+jPZP1WubqEADE3O4FUENlJHDfQASRg== is-extendable@^0.1.0: @@ -9935,6 +10399,13 @@ is-extglob@^2.1.1: resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== +is-finalizationregistry@^1.1.0: + version "1.1.1" + resolved "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz" + integrity sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg== + dependencies: + call-bound "^1.0.3" + is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" @@ -9945,9 +10416,9 @@ is-generator-fn@^2.0.0: resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz" integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== -is-generator-function@^1.0.7: +is-generator-function@^1.0.10, is-generator-function@^1.0.7: version "1.1.2" - resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.1.2.tgz#ae3b61e3d5ea4e4839b90bad22b02335051a17d5" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz" integrity sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA== dependencies: call-bound "^1.0.4" @@ -9973,6 +10444,13 @@ is-hexadecimal@^2.0.0: resolved "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz" integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg== +is-inside-container@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz" + integrity sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA== + dependencies: + is-docker "^3.0.0" + is-installed-globally@^0.4.0: version "0.4.0" resolved "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz" @@ -9981,27 +10459,38 @@ is-installed-globally@^0.4.0: global-dirs "^3.0.0" is-path-inside "^3.0.2" +is-map@^2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz" + integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== + is-negative-zero@^2.0.3: version "2.0.3" resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz" integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== +is-network-error@^1.0.0: + version "1.3.2" + resolved "https://registry.npmjs.org/is-network-error/-/is-network-error-1.3.2.tgz" + integrity sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA== + is-npm@^5.0.0: version "5.0.0" resolved "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz" integrity sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA== is-npm@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz" - integrity sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ== + version "6.1.0" + resolved "https://registry.npmjs.org/is-npm/-/is-npm-6.1.0.tgz" + integrity sha512-O2z4/kNgyjhQwVR1Wpkbfc19JIhggF97NZNCpWTnjH7kVcZMUrnut9XSN7txI7VdyIYk5ZatOq3zvSuWpU8hoA== -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== +is-number-object@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz" + integrity sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw== dependencies: - has-tostringtag "^1.0.0" + call-bound "^1.0.3" + has-tostringtag "^1.0.2" is-number@^7.0.0: version "7.0.0" @@ -10052,7 +10541,7 @@ is-plain-object@^2.0.4: is-plain-object@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz" integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== is-potential-custom-element-name@^1.0.1: @@ -10060,17 +10549,9 @@ is-potential-custom-element-name@^1.0.1: resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz" integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== -is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - is-regex@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz#76d70a3ed10ef9be48eb577887d74205bf0cad22" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz" integrity sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g== dependencies: call-bound "^1.0.2" @@ -10088,16 +10569,21 @@ is-root@^2.1.0: resolved "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz" integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== -is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz" - integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== +is-set@^2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz" + integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== + +is-shared-array-buffer@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz" + integrity sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A== dependencies: - call-bind "^1.0.7" + call-bound "^1.0.3" is-stream@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== is-stream@^2.0.0: @@ -10105,30 +10591,26 @@ is-stream@^2.0.0: resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== - dependencies: - has-tostringtag "^1.0.0" - -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== +is-string@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz" + integrity sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA== dependencies: - has-symbols "^1.0.2" + call-bound "^1.0.3" + has-tostringtag "^1.0.2" -is-typed-array@^1.1.13: - version "1.1.13" - resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz" - integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== +is-symbol@^1.0.4, is-symbol@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz" + integrity sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w== dependencies: - which-typed-array "^1.1.14" + call-bound "^1.0.2" + has-symbols "^1.1.0" + safe-regex-test "^1.1.0" -is-typed-array@^1.1.3: +is-typed-array@^1.1.13, is-typed-array@^1.1.14, is-typed-array@^1.1.15, is-typed-array@^1.1.3: version "1.1.15" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz#4bfb4a45b61cee83a5a46fba778e4e8d59c0ce0b" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz" integrity sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ== dependencies: which-typed-array "^1.1.16" @@ -10138,12 +10620,25 @@ is-typedarray@^1.0.0: resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== -is-weakref@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" - integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== +is-weakmap@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz" + integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== + +is-weakref@^1.0.2, is-weakref@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz" + integrity sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew== dependencies: - call-bind "^1.0.2" + call-bound "^1.0.3" + +is-weakset@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz" + integrity sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ== + dependencies: + call-bound "^1.0.3" + get-intrinsic "^1.2.6" is-whitespace-character@^1.0.0: version "1.0.4" @@ -10162,6 +10657,13 @@ is-wsl@^2.2.0: dependencies: is-docker "^2.0.0" +is-wsl@^3.1.0: + version "3.1.1" + resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz" + integrity sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw== + dependencies: + is-inside-container "^1.0.0" + is-yarn-global@^0.3.0: version "0.3.0" resolved "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz" @@ -10197,11 +10699,6 @@ isobject@^3.0.1: resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== -isomorphic-rslog@0.0.6: - version "0.0.6" - resolved "https://registry.npmjs.org/isomorphic-rslog/-/isomorphic-rslog-0.0.6.tgz" - integrity sha512-HM0q6XqQ93psDlqvuViNs/Ea3hAyGDkIdVAHlrEocjjAwGrs1fZ+EdQjS9eUPacnYB7Y8SoDdSY3H8p3ce205A== - istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: version "3.2.2" resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz" @@ -10237,9 +10734,9 @@ istanbul-lib-source-maps@^4.0.0: source-map "^0.6.1" istanbul-reports@^3.1.3: - version "3.1.7" - resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz" - integrity sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g== + version "3.2.0" + resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz" + integrity sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA== dependencies: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" @@ -10672,13 +11169,13 @@ jest@^27.4.7: jest-cli "^27.5.1" jiti@^1.20.0: - version "1.21.6" - resolved "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz" - integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== + version "1.21.7" + resolved "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz" + integrity sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A== jmespath@0.16.0: version "0.16.0" - resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.16.0.tgz#b15b0a85dfd4d930d43e69ed605943c802785076" + resolved "https://registry.npmjs.org/jmespath/-/jmespath-0.16.0.tgz" integrity sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw== joi@^17.6.0, joi@^17.9.2: @@ -10697,26 +11194,18 @@ joi@^17.6.0, joi@^17.9.2: resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -js-yaml@^3.14.1: +js-yaml@^3.13.1, js-yaml@^3.14.1: version "3.14.2" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.2.tgz#77485ce1dd7f33c061fd1b16ecea23b55fcb04b0" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz" integrity sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg== dependencies: argparse "^1.0.7" esprima "^4.0.0" js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + version "4.1.1" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz" + integrity sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA== dependencies: argparse "^2.0.1" @@ -10753,10 +11242,10 @@ jsdom@^16.6.0: ws "^7.4.6" xml-name-validator "^3.0.0" -jsesc@^3.0.2, jsesc@~3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz" - integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== +jsesc@^3.0.2, jsesc@~3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz" + integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA== json-buffer@3.0.0: version "3.0.0" @@ -10768,7 +11257,7 @@ json-buffer@3.0.1: resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz" integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== -json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: +json-parse-even-better-errors@^2.3.0: version "2.3.1" resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== @@ -10796,9 +11285,9 @@ json5@^1.0.2: minimist "^1.2.0" jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + version "6.2.1" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz" + integrity sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q== dependencies: universalify "^2.0.0" optionalDependencies: @@ -10806,7 +11295,7 @@ jsonfile@^6.0.1: jsonwebtoken@^9.0.2: version "9.0.3" - resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-9.0.3.tgz#6cd57ab01e9b0ac07cb847d53d3c9b6ee31f7ae2" + resolved "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.3.tgz" integrity sha512-MT/xP0CrubFRNLNKvxJ2BYfy53Zkm++5bX9dtuPbqAeQpTVe0MQTFhao8+Cp//EmJp244xt6Drw/GVEGCUj40g== dependencies: jws "^4.0.1" @@ -10822,7 +11311,7 @@ jsonwebtoken@^9.0.2: jwa@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/jwa/-/jwa-2.0.1.tgz#bf8176d1ad0cd72e0f3f58338595a13e110bc804" + resolved "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz" integrity sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg== dependencies: buffer-equal-constant-time "^1.0.1" @@ -10831,16 +11320,16 @@ jwa@^2.0.1: jws@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/jws/-/jws-4.0.1.tgz#07edc1be8fac20e677b283ece261498bd38f0690" + resolved "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz" integrity sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA== dependencies: jwa "^2.0.1" safe-buffer "^5.0.1" -katex@^0.16.9: - version "0.16.11" - resolved "https://registry.npmjs.org/katex/-/katex-0.16.11.tgz" - integrity sha512-RQrI8rlHY92OLf3rho/Ts8i/XvjgguEjOkO1BEXcU3N8BqPpSzBNwV/G0Ukr+P/l3ivvJUE/Fa/CwbS6HesGNQ== +katex@^0.16.25: + version "0.16.46" + resolved "https://registry.npmjs.org/katex/-/katex-0.16.46.tgz" + integrity sha512-WHy4Coo+bGZyH7NwJKHkS04YFsFcarWbAEOAC3EMndzdN6VSZqklLLIgfxzyaW9jDoeGYJX9SWbJPKpecox0Uw== dependencies: commander "^8.3.0" @@ -10873,27 +11362,11 @@ kleur@^3.0.3: resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== -kolorist@^1.8.0: - version "1.8.0" - resolved "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz" - integrity sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ== - kuler@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/kuler/-/kuler-2.0.0.tgz#e2c570a3800388fb44407e851531c1d670b061b3" + resolved "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz" integrity sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A== -langium@3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/langium/-/langium-3.0.0.tgz" - integrity sha512-+Ez9EoiByeoTu/2BXmEaZ06iPNXM6thWJp02KfBO/raSMyCJ4jw7AkWWa+zBCTm0+Tw1Fj9FOxdqSskyN5nAwg== - dependencies: - chevrotain "~11.0.3" - chevrotain-allstar "~0.3.0" - vscode-languageserver "~9.0.1" - vscode-languageserver-textdocument "~1.0.11" - vscode-uri "~3.0.8" - latest-version@^5.1.0: version "5.1.0" resolved "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz" @@ -10908,13 +11381,13 @@ latest-version@^7.0.0: dependencies: package-json "^8.1.0" -launch-editor@^2.6.0: - version "2.9.1" - resolved "https://registry.npmjs.org/launch-editor/-/launch-editor-2.9.1.tgz" - integrity sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w== +launch-editor@^2.6.0, launch-editor@^2.6.1: + version "2.13.2" + resolved "https://registry.npmjs.org/launch-editor/-/launch-editor-2.13.2.tgz" + integrity sha512-4VVDnbOpLXy/s8rdRCSXb+zfMeFR0WlJWpET1iA9CQdlZDfwyLjUuGQzXU4VeOoey6AicSAluWan7Etga6Kcmg== dependencies: - picocolors "^1.0.0" - shell-quote "^1.8.1" + picocolors "^1.1.1" + shell-quote "^1.8.3" layout-base@^1.0.0: version "1.0.2" @@ -10931,73 +11404,79 @@ leven@^3.1.0: resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== -lightningcss-darwin-arm64@1.28.1: - version "1.28.1" - resolved "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.28.1.tgz" - integrity sha512-VG3vvzM0m/rguCdm76DdobNeNJnHK+jWcdkNLFWHLh9YCotRvbRIt45JxwcHlIF8TDqWStVLTdghq5NaigVCBQ== - -lightningcss-darwin-x64@1.28.1: - version "1.28.1" - resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.28.1.tgz#c0f975759af364699fdbd7a4756ac66767ed9767" - integrity sha512-O7ORdislvKfMohFl4Iq7fxKqdJOuuxArcglVI3amuFO5DJ0wfV3Gxgi1JRo49slfr7OVzJQEHLG4muTWYM5cTQ== - -lightningcss-freebsd-x64@1.28.1: - version "1.28.1" - resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.28.1.tgz#f8eb8b63845a88d32eed71a594cf224f6c7ea4fd" - integrity sha512-b7sF89B31kYYijxVcFO7l5u6UNA862YstNu+3YbLl/IQKzveL4a5cwR5cdpG+OOhErg/c2u9WCmzZoX2I5GBvw== - -lightningcss-linux-arm-gnueabihf@1.28.1: - version "1.28.1" - resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.28.1.tgz#726dfdb2db6ba3a7bb2169e5724d826cb585a76d" - integrity sha512-p61kXwvhUDLLzkWHjzSFfUBW/F0iy3jr3CWi3k8SKULtJEsJXTI9DqRm9EixxMSe2AMBQBt4auTYiQL4B1N51A== - -lightningcss-linux-arm64-gnu@1.28.1: - version "1.28.1" - resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.28.1.tgz#9f4e4450617230ea557abb5ffd5d26b2047e9b62" - integrity sha512-iO+fN9hOMmzfwqcG2/BgUtMKD48H2JO/SXU44fyIwpY2veb65QF5xiRrQ9l1FwIxbGK3231KBYCtAqv+xf+NsQ== - -lightningcss-linux-arm64-musl@1.28.1: - version "1.28.1" - resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.28.1.tgz#9d2561d8a5ecfb3f1f18651da0acc592e837ea3a" - integrity sha512-dnMHeXEmCUzHHZjaDpQBYuBKcN9nPC3nPFKl70bcj5Bkn5EmkcgEqm5p035LKOgvAwk1XwLpQCML6pXmCwz0NQ== - -lightningcss-linux-x64-gnu@1.28.1: - version "1.28.1" - resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.28.1.tgz#91d0a41d6dd40d8965cb6c1fbd4d40e6b3460384" - integrity sha512-7vWDISaMUn+oo2TwRdf2hl/BLdPxvywv9JKEqNZB/0K7bXwV4XE9wN/C2sAp1gGuh6QBA8lpjF4JIPt3HNlCHA== - -lightningcss-linux-x64-musl@1.28.1: - version "1.28.1" - resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.28.1.tgz#f1a9d0cafc1eb7ec72ef4f2a3a81b5631060c461" - integrity sha512-IHCu9tVGP+x5BCpA2rF3D04DBokcBza/a8AuHQU+1AiMKubuMegPwcL7RatBgK4ztFHeYnnD5NdhwhRfYMAtNA== - -lightningcss-win32-arm64-msvc@1.28.1: - version "1.28.1" - resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.28.1.tgz#c21f7683648a9e4d856737fc22c3eca908c773b6" - integrity sha512-Erm72kHmMg/3h350PTseskz+eEGBM17Fuu79WW2Qqt0BfWSF1jHHc12lkJCWMYl5jcBHPs5yZdgNHtJ7IJS3Uw== - -lightningcss-win32-x64-msvc@1.28.1: - version "1.28.1" - resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.28.1.tgz#7afe4f4128bf6b75a570e8585d287040243f7881" - integrity sha512-ZPQtvx+uQBzrSdHH8p4H3M9Alue+x369TPZAA3b4K3d92FPhpZCuBG04+HQzspam9sVeID9mI6f3VRAs2ezaEA== +lightningcss-android-arm64@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz#f033885116dfefd9c6f54787523e3514b61e1968" + integrity sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg== + +lightningcss-darwin-arm64@1.32.0: + version "1.32.0" + resolved "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz" + integrity sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ== + +lightningcss-darwin-x64@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz#35f3e97332d130b9ca181e11b568ded6aebc6d5e" + integrity sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w== + +lightningcss-freebsd-x64@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz#9777a76472b64ed6ff94342ad64c7bafd794a575" + integrity sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig== + +lightningcss-linux-arm-gnueabihf@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz#13ae652e1ab73b9135d7b7da172f666c410ad53d" + integrity sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw== + +lightningcss-linux-arm64-gnu@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz#417858795a94592f680123a1b1f9da8a0e1ef335" + integrity sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ== + +lightningcss-linux-arm64-musl@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz#6be36692e810b718040802fd809623cffe732133" + integrity sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg== + +lightningcss-linux-x64-gnu@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz#0b7803af4eb21cfd38dd39fe2abbb53c7dd091f6" + integrity sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA== + +lightningcss-linux-x64-musl@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz#88dc8ba865ddddb1ac5ef04b0f161804418c163b" + integrity sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg== + +lightningcss-win32-arm64-msvc@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz#4f30ba3fa5e925f5b79f945e8cc0d176c3b1ab38" + integrity sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw== + +lightningcss-win32-x64-msvc@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz#141aa5605645064928902bb4af045fa7d9f4220a" + integrity sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q== lightningcss@^1.27.0: - version "1.28.1" - resolved "https://registry.npmjs.org/lightningcss/-/lightningcss-1.28.1.tgz" - integrity sha512-KRDkHlLlNj3DWh79CDt93fPlRJh2W1AuHV0ZSZAMMuN7lqlsZTV5842idfS1urWG8q9tc17velp1gCXhY7sLnQ== + version "1.32.0" + resolved "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz" + integrity sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ== dependencies: - detect-libc "^1.0.3" + detect-libc "^2.0.3" optionalDependencies: - lightningcss-darwin-arm64 "1.28.1" - lightningcss-darwin-x64 "1.28.1" - lightningcss-freebsd-x64 "1.28.1" - lightningcss-linux-arm-gnueabihf "1.28.1" - lightningcss-linux-arm64-gnu "1.28.1" - lightningcss-linux-arm64-musl "1.28.1" - lightningcss-linux-x64-gnu "1.28.1" - lightningcss-linux-x64-musl "1.28.1" - lightningcss-win32-arm64-msvc "1.28.1" - lightningcss-win32-x64-msvc "1.28.1" + lightningcss-android-arm64 "1.32.0" + lightningcss-darwin-arm64 "1.32.0" + lightningcss-darwin-x64 "1.32.0" + lightningcss-freebsd-x64 "1.32.0" + lightningcss-linux-arm-gnueabihf "1.32.0" + lightningcss-linux-arm64-gnu "1.32.0" + lightningcss-linux-arm64-musl "1.32.0" + lightningcss-linux-x64-gnu "1.32.0" + lightningcss-linux-x64-musl "1.32.0" + lightningcss-win32-arm64-msvc "1.32.0" + lightningcss-win32-x64-msvc "1.32.0" lilconfig@^2.0.3: version "2.1.0" @@ -11005,19 +11484,19 @@ lilconfig@^2.0.3: integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== lilconfig@^3.1.1: - version "3.1.2" - resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz" - integrity sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow== + version "3.1.3" + resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz" + integrity sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw== lines-and-columns@^1.1.6: version "1.2.4" resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== -loader-runner@^4.2.0: - version "4.3.0" - resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz" - integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== +loader-runner@^4.3.1: + version "4.3.2" + resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.2.tgz" + integrity sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w== loader-utils@^2.0.0, loader-utils@^2.0.4: version "2.0.4" @@ -11033,14 +11512,6 @@ loader-utils@^3.2.0: resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz" integrity sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg== -local-pkg@^0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz" - integrity sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg== - dependencies: - mlly "^1.4.2" - pkg-types "^1.0.3" - locate-path@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" @@ -11070,10 +11541,10 @@ locate-path@^7.1.0: dependencies: p-locate "^6.0.0" -lodash-es@4.17.21, lodash-es@^4.17.21: - version "4.17.21" - resolved "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz" - integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== +lodash-es@^4.17.21: + version "4.18.1" + resolved "https://registry.npmjs.org/lodash-es/-/lodash-es-4.18.1.tgz" + integrity sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A== lodash.debounce@^4.0.8: version "4.0.8" @@ -11082,32 +11553,32 @@ lodash.debounce@^4.0.8: lodash.includes@^4.3.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" + resolved "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz" integrity sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w== lodash.isboolean@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" + resolved "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz" integrity sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg== lodash.isinteger@^4.0.4: version "4.0.4" - resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" + resolved "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz" integrity sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA== lodash.isnumber@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc" + resolved "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz" integrity sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw== lodash.isplainobject@^4.0.6: version "4.0.6" - resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" + resolved "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz" integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== lodash.isstring@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" + resolved "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz" integrity sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw== lodash.memoize@4.x, lodash.memoize@^4.1.2: @@ -11117,7 +11588,7 @@ lodash.memoize@4.x, lodash.memoize@^4.1.2: lodash.once@^4.0.0: version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" + resolved "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz" integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg== lodash.uniq@4.5.0, lodash.uniq@^4.5.0: @@ -11126,13 +11597,13 @@ lodash.uniq@4.5.0, lodash.uniq@^4.5.0: integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.7.0: - version "4.17.21" - resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + version "4.18.1" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz" + integrity sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q== logform@^2.7.0: version "2.7.0" - resolved "https://registry.yarnpkg.com/logform/-/logform-2.7.0.tgz#cfca97528ef290f2e125a08396805002b2d060d1" + resolved "https://registry.npmjs.org/logform/-/logform-2.7.0.tgz" integrity sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ== dependencies: "@colors/colors" "1.6.0" @@ -11144,7 +11615,7 @@ logform@^2.7.0: longest-streak@^2.0.0: version "2.0.4" - resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" + resolved "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz" integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg== longest-streak@^3.0.0: @@ -11190,7 +11661,7 @@ lru-cache@^5.1.1: lru-cache@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== dependencies: yallist "^4.0.0" @@ -11231,26 +11702,19 @@ markdown-extensions@^2.0.0: resolved "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz" integrity sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q== -markdown-table@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz" - integrity sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A== - dependencies: - repeat-string "^1.0.0" - markdown-table@^3.0.0: version "3.0.4" resolved "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz" integrity sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw== -marked@^13.0.2: - version "13.0.3" - resolved "https://registry.npmjs.org/marked/-/marked-13.0.3.tgz" - integrity sha512-rqRix3/TWzE9rIoFGIn8JmsVfhiuC8VIQ8IdX5TfzmeBucdY05/0UlzKaw0eVtpcN/OdVFpBk7CjKGo9iHJ/zA== +marked@^16.3.0: + version "16.4.2" + resolved "https://registry.npmjs.org/marked/-/marked-16.4.2.tgz" + integrity sha512-TI3V8YYWvkVf3KJe1dRkpnjs68JUPyEa5vjKrp1XEEJUAOaQc+Qj+L1qWbPd0SJuAdQkFU0h73sXXqwDYxsiDA== math-intrinsics@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" + resolved "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz" integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== mdast-squeeze-paragraphs@^4.0.0: @@ -11268,12 +11732,13 @@ mdast-util-definitions@^4.0.0: unist-util-visit "^2.0.0" mdast-util-directive@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-3.0.0.tgz" - integrity sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q== + version "3.1.0" + resolved "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-3.1.0.tgz" + integrity sha512-I3fNFt+DHmpWCYAT7quoM6lHf9wuqtI+oCOfvILnoicNIqjh5E3dEJWiXuYME2gNe8vl1iMQwyUHa7bgFmak6Q== dependencies: "@types/mdast" "^4.0.0" "@types/unist" "^3.0.0" + ccount "^2.0.0" devlop "^1.0.0" mdast-util-from-markdown "^2.0.0" mdast-util-to-markdown "^2.0.0" @@ -11282,9 +11747,9 @@ mdast-util-directive@^3.0.0: unist-util-visit-parents "^6.0.0" mdast-util-find-and-replace@^3.0.0, mdast-util-find-and-replace@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.1.tgz" - integrity sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA== + version "3.0.2" + resolved "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz" + integrity sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg== dependencies: "@types/mdast" "^4.0.0" escape-string-regexp "^5.0.0" @@ -11293,7 +11758,7 @@ mdast-util-find-and-replace@^3.0.0, mdast-util-find-and-replace@^3.0.1: mdast-util-from-markdown@^0.8.0: version "0.8.5" - resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz#d1ef2ca42bc377ecb0463a987910dae89bd9a28c" + resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz" integrity sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ== dependencies: "@types/mdast" "^3.0.0" @@ -11303,9 +11768,9 @@ mdast-util-from-markdown@^0.8.0: unist-util-stringify-position "^2.0.0" mdast-util-from-markdown@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz" - integrity sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA== + version "2.0.3" + resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz" + integrity sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q== dependencies: "@types/mdast" "^4.0.0" "@types/unist" "^3.0.0" @@ -11322,7 +11787,7 @@ mdast-util-from-markdown@^2.0.0: mdast-util-frontmatter@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/mdast-util-frontmatter/-/mdast-util-frontmatter-0.2.0.tgz#8bd5cd55e236c03e204a036f7372ebe9e6748240" + resolved "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-0.2.0.tgz" integrity sha512-FHKL4w4S5fdt1KjJCwB0178WJ0evnyyQr5kXTM3wrOVpytD0hrkvd+AOOjU9Td8onOejCkmZ+HQRT3CZ3coHHQ== dependencies: micromark-extension-frontmatter "^0.2.0" @@ -11351,9 +11816,9 @@ mdast-util-gfm-autolink-literal@^2.0.0: micromark-util-character "^2.0.0" mdast-util-gfm-footnote@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.0.0.tgz" - integrity sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ== + version "2.1.0" + resolved "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz" + integrity sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ== dependencies: "@types/mdast" "^4.0.0" devlop "^1.1.0" @@ -11392,9 +11857,9 @@ mdast-util-gfm-task-list-item@^2.0.0: mdast-util-to-markdown "^2.0.0" mdast-util-gfm@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.0.0.tgz" - integrity sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw== + version "3.1.0" + resolved "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz" + integrity sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ== dependencies: mdast-util-from-markdown "^2.0.0" mdast-util-gfm-autolink-literal "^2.0.0" @@ -11417,9 +11882,9 @@ mdast-util-mdx-expression@^2.0.0: mdast-util-to-markdown "^2.0.0" mdast-util-mdx-jsx@^3.0.0: - version "3.1.3" - resolved "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.1.3.tgz" - integrity sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ== + version "3.2.0" + resolved "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz" + integrity sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q== dependencies: "@types/estree-jsx" "^1.0.0" "@types/hast" "^3.0.0" @@ -11480,9 +11945,9 @@ mdast-util-to-hast@10.0.1: unist-util-visit "^2.0.0" mdast-util-to-hast@^13.0.0: - version "13.2.0" - resolved "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz" - integrity sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA== + version "13.2.1" + resolved "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz" + integrity sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA== dependencies: "@types/hast" "^3.0.0" "@types/mdast" "^4.0.0" @@ -11496,7 +11961,7 @@ mdast-util-to-hast@^13.0.0: mdast-util-to-markdown@^0.6.0: version "0.6.5" - resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz#b33f67ca820d69e6cc527a93d4039249b504bebe" + resolved "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz" integrity sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ== dependencies: "@types/unist" "^2.0.0" @@ -11507,9 +11972,9 @@ mdast-util-to-markdown@^0.6.0: zwitch "^1.0.0" mdast-util-to-markdown@^2.0.0: - version "2.1.1" - resolved "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.1.tgz" - integrity sha512-OrkcCoqAkEg9b1ykXBrA0ehRc8H4fGU/03cACmW2xXzau1+dIdS+qJugh1Cqex3hMumSBgSE/5pc7uqP12nLAw== + version "2.1.2" + resolved "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz" + integrity sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA== dependencies: "@types/mdast" "^4.0.0" "@types/unist" "^3.0.0" @@ -11575,6 +12040,26 @@ memfs@^3.1.2, memfs@^3.4.3: dependencies: fs-monkey "^1.0.4" +memfs@^4.43.1: + version "4.57.2" + resolved "https://registry.npmjs.org/memfs/-/memfs-4.57.2.tgz" + integrity sha512-2nWzSsJzrukurSDna4Z0WywuScK4Id3tSKejgu74u8KCdW4uNrseKRSIDg75C6Yw5ZRqBe0F0EtMNlTbUq8bAQ== + dependencies: + "@jsonjoy.com/fs-core" "4.57.2" + "@jsonjoy.com/fs-fsa" "4.57.2" + "@jsonjoy.com/fs-node" "4.57.2" + "@jsonjoy.com/fs-node-builtins" "4.57.2" + "@jsonjoy.com/fs-node-to-fsa" "4.57.2" + "@jsonjoy.com/fs-node-utils" "4.57.2" + "@jsonjoy.com/fs-print" "4.57.2" + "@jsonjoy.com/fs-snapshot" "4.57.2" + "@jsonjoy.com/json-pack" "^1.11.0" + "@jsonjoy.com/util" "^1.9.0" + glob-to-regex.js "^1.0.1" + thingies "^2.5.0" + tree-dump "^1.0.3" + tslib "^2.0.0" + memoize-one@^6.0.0: version "6.0.0" resolved "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz" @@ -11595,32 +12080,32 @@ merge2@^1.3.0, merge2@^1.4.1: resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -mermaid@>=10.4: - version "11.4.0" - resolved "https://registry.npmjs.org/mermaid/-/mermaid-11.4.0.tgz" - integrity sha512-mxCfEYvADJqOiHfGpJXLs4/fAjHz448rH0pfY5fAoxiz70rQiDSzUUy4dNET2T08i46IVpjohPd6WWbzmRHiPA== +mermaid@>=11.6.0: + version "11.15.0" + resolved "https://registry.npmjs.org/mermaid/-/mermaid-11.15.0.tgz" + integrity sha512-pTMbcf3rWdtLiYGpmoTjHEpeY8seiy6sR+9nD7LOs8KfUbHE4lOUAprTRqRAcWSQ6MQpdX+YEsxShtGsINtPtw== dependencies: - "@braintree/sanitize-url" "^7.0.1" - "@iconify/utils" "^2.1.32" - "@mermaid-js/parser" "^0.3.0" + "@braintree/sanitize-url" "^7.1.1" + "@iconify/utils" "^3.0.2" + "@mermaid-js/parser" "^1.1.1" "@types/d3" "^7.4.3" - "@types/dompurify" "^3.0.5" - cytoscape "^3.29.2" + "@upsetjs/venn.js" "^2.0.0" + cytoscape "^3.33.1" cytoscape-cose-bilkent "^4.1.0" cytoscape-fcose "^2.2.0" d3 "^7.9.0" d3-sankey "^0.12.3" - dagre-d3-es "7.0.11" - dayjs "^1.11.10" - dompurify "^3.0.11 <3.1.7" - katex "^0.16.9" + dagre-d3-es "7.0.14" + dayjs "^1.11.19" + dompurify "^3.3.1" + es-toolkit "^1.45.1" + katex "^0.16.25" khroma "^2.1.0" - lodash-es "^4.17.21" - marked "^13.0.2" + marked "^16.3.0" roughjs "^4.6.6" - stylis "^4.3.1" + stylis "^4.3.6" ts-dedent "^2.2.0" - uuid "^9.0.1" + uuid "^11.1.0 || ^12 || ^13 || ^14.0.0" methods@~1.1.2: version "1.1.2" @@ -11628,9 +12113,9 @@ methods@~1.1.2: integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== micromark-core-commonmark@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz" - integrity sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA== + version "2.0.3" + resolved "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz" + integrity sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg== dependencies: decode-named-character-reference "^1.0.0" devlop "^1.0.0" @@ -11664,7 +12149,7 @@ micromark-extension-directive@^3.0.0: micromark-extension-frontmatter@^0.2.0: version "0.2.2" - resolved "https://registry.yarnpkg.com/micromark-extension-frontmatter/-/micromark-extension-frontmatter-0.2.2.tgz#61b8e92e9213e1d3c13f5a59e7862f5ca98dfa53" + resolved "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-0.2.2.tgz" integrity sha512-q6nPLFCMTLtfsctAuS0Xh4vaolxSFUWUWR6PZSrXXiRy+SANGllpcqdXFv2z07l0Xz/6Hl40hK0ffNCJPH2n1A== dependencies: fault "^1.0.0" @@ -11716,9 +12201,9 @@ micromark-extension-gfm-strikethrough@^2.0.0: micromark-util-types "^2.0.0" micromark-extension-gfm-table@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.0.tgz" - integrity sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g== + version "2.1.1" + resolved "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz" + integrity sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg== dependencies: devlop "^1.0.0" micromark-factory-space "^2.0.0" @@ -11759,9 +12244,9 @@ micromark-extension-gfm@^3.0.0: micromark-util-types "^2.0.0" micromark-extension-mdx-expression@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.0.tgz" - integrity sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ== + version "3.0.1" + resolved "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.1.tgz" + integrity sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q== dependencies: "@types/estree" "^1.0.0" devlop "^1.0.0" @@ -11773,11 +12258,10 @@ micromark-extension-mdx-expression@^3.0.0: micromark-util-types "^2.0.0" micromark-extension-mdx-jsx@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.1.tgz" - integrity sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg== + version "3.0.2" + resolved "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.2.tgz" + integrity sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ== dependencies: - "@types/acorn" "^4.0.0" "@types/estree" "^1.0.0" devlop "^1.0.0" estree-util-is-identifier-name "^3.0.0" @@ -11826,18 +12310,18 @@ micromark-extension-mdxjs@^3.0.0: micromark-util-types "^2.0.0" micromark-factory-destination@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz" - integrity sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz" + integrity sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA== dependencies: micromark-util-character "^2.0.0" micromark-util-symbol "^2.0.0" micromark-util-types "^2.0.0" micromark-factory-label@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz" - integrity sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz" + integrity sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg== dependencies: devlop "^1.0.0" micromark-util-character "^2.0.0" @@ -11845,9 +12329,9 @@ micromark-factory-label@^2.0.0: micromark-util-types "^2.0.0" micromark-factory-mdx-expression@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.2.tgz" - integrity sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw== + version "2.0.3" + resolved "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.3.tgz" + integrity sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ== dependencies: "@types/estree" "^1.0.0" devlop "^1.0.0" @@ -11868,17 +12352,17 @@ micromark-factory-space@^1.0.0: micromark-util-types "^1.0.0" micromark-factory-space@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz" - integrity sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz" + integrity sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg== dependencies: micromark-util-character "^2.0.0" micromark-util-types "^2.0.0" micromark-factory-title@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz" - integrity sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz" + integrity sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw== dependencies: micromark-factory-space "^2.0.0" micromark-util-character "^2.0.0" @@ -11886,9 +12370,9 @@ micromark-factory-title@^2.0.0: micromark-util-types "^2.0.0" micromark-factory-whitespace@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz" - integrity sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz" + integrity sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ== dependencies: micromark-factory-space "^2.0.0" micromark-util-character "^2.0.0" @@ -11904,48 +12388,48 @@ micromark-util-character@^1.0.0, micromark-util-character@^1.1.0: micromark-util-types "^1.0.0" micromark-util-character@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz" - integrity sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ== + version "2.1.1" + resolved "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz" + integrity sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q== dependencies: micromark-util-symbol "^2.0.0" micromark-util-types "^2.0.0" micromark-util-chunked@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz" - integrity sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz" + integrity sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA== dependencies: micromark-util-symbol "^2.0.0" micromark-util-classify-character@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz" - integrity sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz" + integrity sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q== dependencies: micromark-util-character "^2.0.0" micromark-util-symbol "^2.0.0" micromark-util-types "^2.0.0" micromark-util-combine-extensions@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz" - integrity sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz" + integrity sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg== dependencies: micromark-util-chunked "^2.0.0" micromark-util-types "^2.0.0" micromark-util-decode-numeric-character-reference@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz" - integrity sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ== + version "2.0.2" + resolved "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz" + integrity sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw== dependencies: micromark-util-symbol "^2.0.0" micromark-util-decode-string@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz" - integrity sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz" + integrity sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ== dependencies: decode-named-character-reference "^1.0.0" micromark-util-character "^2.0.0" @@ -11953,16 +12437,15 @@ micromark-util-decode-string@^2.0.0: micromark-util-symbol "^2.0.0" micromark-util-encode@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz" - integrity sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz" + integrity sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw== micromark-util-events-to-acorn@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.2.tgz" - integrity sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA== + version "2.0.3" + resolved "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.3.tgz" + integrity sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg== dependencies: - "@types/acorn" "^4.0.0" "@types/estree" "^1.0.0" "@types/unist" "^3.0.0" devlop "^1.0.0" @@ -11972,37 +12455,37 @@ micromark-util-events-to-acorn@^2.0.0: vfile-message "^4.0.0" micromark-util-html-tag-name@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz" - integrity sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz" + integrity sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA== micromark-util-normalize-identifier@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz" - integrity sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz" + integrity sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q== dependencies: micromark-util-symbol "^2.0.0" micromark-util-resolve-all@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz" - integrity sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz" + integrity sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg== dependencies: micromark-util-types "^2.0.0" micromark-util-sanitize-uri@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz" - integrity sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz" + integrity sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ== dependencies: micromark-util-character "^2.0.0" micromark-util-encode "^2.0.0" micromark-util-symbol "^2.0.0" micromark-util-subtokenize@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz" - integrity sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q== + version "2.1.0" + resolved "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz" + integrity sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA== dependencies: devlop "^1.0.0" micromark-util-chunked "^2.0.0" @@ -12015,9 +12498,9 @@ micromark-util-symbol@^1.0.0, micromark-util-symbol@^1.0.1: integrity sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag== micromark-util-symbol@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz" - integrity sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw== + version "2.0.1" + resolved "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz" + integrity sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q== micromark-util-types@^1.0.0: version "1.1.0" @@ -12025,14 +12508,14 @@ micromark-util-types@^1.0.0: integrity sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg== micromark-util-types@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz" - integrity sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w== + version "2.0.2" + resolved "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz" + integrity sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA== micromark@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/micromark/-/micromark-4.0.0.tgz" - integrity sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ== + version "4.0.2" + resolved "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz" + integrity sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA== dependencies: "@types/debug" "^4.0.0" debug "^4.0.0" @@ -12054,7 +12537,7 @@ micromark@^4.0.0: micromark@~2.11.0: version "2.11.4" - resolved "https://registry.yarnpkg.com/micromark/-/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a" + resolved "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz" integrity sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA== dependencies: debug "^4.0.0" @@ -12068,30 +12551,42 @@ micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5, micromatch@^4.0.8: braces "^3.0.3" picomatch "^2.3.1" -mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": +mime-db@1.52.0: version "1.52.0" resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== +"mime-db@>= 1.43.0 < 2", mime-db@^1.54.0: + version "1.54.0" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz" + integrity sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ== + mime-db@~1.33.0: version "1.33.0" resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz" integrity sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ== -mime-types@2.1.18: +mime-types@2.1.18, mime-types@^2.1.12: version "2.1.18" resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz" integrity sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ== dependencies: mime-db "~1.33.0" -mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@^2.1.35, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34: +mime-types@^2.1.27, mime-types@^2.1.31, mime-types@^2.1.35, mime-types@~2.1.24, mime-types@~2.1.34, mime-types@~2.1.35: version "2.1.35" resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" +mime-types@^3.0.1: + version "3.0.2" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz" + integrity sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A== + dependencies: + mime-db "^1.54.0" + mime@1.6.0: version "1.6.0" resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" @@ -12117,10 +12612,10 @@ mimic-response@^4.0.0: resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz" integrity sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg== -mini-css-extract-plugin@^2.6.0, mini-css-extract-plugin@^2.9.1: - version "2.9.2" - resolved "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.2.tgz" - integrity sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w== +mini-css-extract-plugin@^2.6.0, mini-css-extract-plugin@^2.9.2: + version "2.10.2" + resolved "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.10.2.tgz" + integrity sha512-AOSS0IdEB95ayVkxn5oGzNQwqAi2J0Jb/kKm43t7H73s8+f5873g0yuj0PNvK4dO75mu5DHg4nlgp4k6Kga8eg== dependencies: schema-utils "^4.0.0" tapable "^2.2.1" @@ -12130,10 +12625,10 @@ minimalistic-assert@^1.0.0: resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz" integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== -minimatch@3.1.2, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1: - version "3.1.2" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== +minimatch@3.1.5, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1: + version "3.1.5" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz" + integrity sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w== dependencies: brace-expansion "^1.1.7" @@ -12149,20 +12644,10 @@ mkdirp@~0.5.1: dependencies: minimist "^1.2.6" -mlly@^1.4.2, mlly@^1.7.1, mlly@^1.7.2: - version "1.7.2" - resolved "https://registry.npmjs.org/mlly/-/mlly-1.7.2.tgz" - integrity sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA== - dependencies: - acorn "^8.12.1" - pathe "^1.1.2" - pkg-types "^1.2.0" - ufo "^1.5.4" - mrmime@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz" - integrity sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw== + version "2.0.1" + resolved "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz" + integrity sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ== ms@2.0.0: version "2.0.0" @@ -12182,10 +12667,10 @@ multicast-dns@^7.2.5: dns-packet "^5.2.2" thunky "^1.0.2" -nanoid@^3.3.7: - version "3.3.7" - resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz" - integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== +nanoid@^3.3.11: + version "3.3.12" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz" + integrity sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ== natural-compare@^1.4.0: version "1.4.0" @@ -12223,9 +12708,9 @@ node-emoji@^1.10.0: lodash "^4.17.21" node-emoji@^2.1.0: - version "2.1.3" - resolved "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.3.tgz" - integrity sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA== + version "2.2.0" + resolved "https://registry.npmjs.org/node-emoji/-/node-emoji-2.2.0.tgz" + integrity sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw== dependencies: "@sindresorhus/is" "^4.6.0" char-regex "^1.0.2" @@ -12234,26 +12719,26 @@ node-emoji@^2.1.0: node-fetch@^2.6.7: version "2.7.0" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz" integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== dependencies: whatwg-url "^5.0.0" node-forge@^1: - version "1.3.1" - resolved "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz" - integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== + version "1.4.0" + resolved "https://registry.npmjs.org/node-forge/-/node-forge-1.4.0.tgz" + integrity sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ== node-html-markdown@^1.1.3: version "1.3.0" - resolved "https://registry.yarnpkg.com/node-html-markdown/-/node-html-markdown-1.3.0.tgz#ef0b19a3bbfc0f1a880abb9ff2a0c9aa6bbff2a9" + resolved "https://registry.npmjs.org/node-html-markdown/-/node-html-markdown-1.3.0.tgz" integrity sha512-OeFi3QwC/cPjvVKZ114tzzu+YoR+v9UXW5RwSXGUqGb0qCl0DvP406tzdL7SFn8pZrMyzXoisfG2zcuF9+zw4g== dependencies: node-html-parser "^6.1.1" node-html-parser@^6.1.1: version "6.1.13" - resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-6.1.13.tgz#a1df799b83df5c6743fcd92740ba14682083b7e4" + resolved "https://registry.npmjs.org/node-html-parser/-/node-html-parser-6.1.13.tgz" integrity sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg== dependencies: css-select "^5.1.0" @@ -12264,21 +12749,16 @@ node-int64@^0.4.0: resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz" integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== -node-releases@^2.0.18: - version "2.0.18" - resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz" - integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== +node-releases@^2.0.36: + version "2.0.44" + resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.44.tgz" + integrity sha512-5WUyunoPMsvvEhS8AxHtRzP+oA8UCkJ7YRxatWKjngndhDGLiqEVAQKWjFAiAiuL8zMRGzGSJxFnLetoa43qGQ== normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== -normalize-range@^0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" - integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== - normalize-url@^4.1.0: version "4.5.1" resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz" @@ -12290,9 +12770,9 @@ normalize-url@^6.0.1: integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== normalize-url@^8.0.0: - version "8.0.1" - resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz" - integrity sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w== + version "8.1.1" + resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-8.1.1.tgz" + integrity sha512-JYc0DPlpGWB40kH5g07gGTrYuMqV653k3uBKY6uITPWds3M0ov3GaWGp9lbE3Bzngx8+XkfzgvASb9vk9JDFXQ== npm-run-path@^4.0.1: version "4.0.1" @@ -12329,54 +12809,57 @@ null-loader@^4.0.1: schema-utils "^3.0.0" nwsapi@^2.2.0: - version "2.2.13" - resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.13.tgz" - integrity sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ== + version "2.2.23" + resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.23.tgz" + integrity sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ== object-assign@^4.1.1: version "4.1.1" resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== -object-inspect@^1.13.1: - version "1.13.2" - resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz" - integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== +object-inspect@^1.13.3, object-inspect@^1.13.4: + version "1.13.4" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz" + integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew== object-keys@^1.1.1: version "1.1.1" resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -object.assign@^4.1.0, object.assign@^4.1.5: - version "4.1.5" - resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz" - integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== +object.assign@^4.1.0, object.assign@^4.1.7: + version "4.1.7" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz" + integrity sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw== dependencies: - call-bind "^1.0.5" + call-bind "^1.0.8" + call-bound "^1.0.3" define-properties "^1.2.1" - has-symbols "^1.0.3" + es-object-atoms "^1.0.0" + has-symbols "^1.1.0" object-keys "^1.1.1" object.getownpropertydescriptors@^2.1.0: - version "2.1.8" - resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz" - integrity sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A== + version "2.1.9" + resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.9.tgz" + integrity sha512-mt8YM6XwsTTovI+kdZdHSxoyF2DI59up034orlC9NfweclcWOt7CVascNNLp6U+bjFVCVCIh9PwS76tDM/rH8g== dependencies: - array.prototype.reduce "^1.0.6" - call-bind "^1.0.7" + array.prototype.reduce "^1.0.8" + call-bind "^1.0.8" define-properties "^1.2.1" - es-abstract "^1.23.2" - es-object-atoms "^1.0.0" - gopd "^1.0.1" - safe-array-concat "^1.1.2" + es-abstract "^1.24.0" + es-object-atoms "^1.1.1" + gopd "^1.2.0" + safe-array-concat "^1.1.3" object.values@^1.1.0: - version "1.2.0" - resolved "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz" - integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ== + version "1.2.1" + resolved "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz" + integrity sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA== dependencies: - call-bind "^1.0.7" + call-bind "^1.0.8" + call-bound "^1.0.3" define-properties "^1.2.1" es-object-atoms "^1.0.0" @@ -12385,17 +12868,17 @@ obuf@^1.0.0, obuf@^1.1.2: resolved "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz" integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== -on-finished@2.4.1: +on-finished@^2.4.1, on-finished@~2.4.1: version "2.4.1" resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== dependencies: ee-first "1.1.1" -on-headers@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== +on-headers@~1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz" + integrity sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A== once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" @@ -12419,7 +12902,7 @@ onchange@^7.1.0: one-time@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/one-time/-/one-time-1.0.0.tgz#e06bc174aed214ed58edede573b433bbf827cb45" + resolved "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz" integrity sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g== dependencies: fn.name "1.x.x" @@ -12431,6 +12914,16 @@ onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" +open@^10.0.3: + version "10.2.0" + resolved "https://registry.npmjs.org/open/-/open-10.2.0.tgz" + integrity sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA== + dependencies: + default-browser "^5.2.1" + define-lazy-prop "^3.0.0" + is-inside-container "^1.0.0" + wsl-utils "^0.1.0" + open@^8.0.9, open@^8.4.0: version "8.4.2" resolved "https://registry.npmjs.org/open/-/open-8.4.2.tgz" @@ -12445,6 +12938,15 @@ opener@^1.5.2: resolved "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz" integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== +own-keys@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz" + integrity sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg== + dependencies: + get-intrinsic "^1.2.6" + object-keys "^1.1.1" + safe-push-apply "^1.0.0" + p-cancelable@^1.0.0: version "1.1.0" resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz" @@ -12457,7 +12959,7 @@ p-cancelable@^3.0.0: p-finally@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== p-limit@^2.0.0, p-limit@^2.2.0: @@ -12516,9 +13018,9 @@ p-map@^4.0.0: dependencies: aggregate-error "^3.0.0" -p-queue@^6.6.1: +p-queue@^6.6.1, p-queue@^6.6.2: version "6.6.2" - resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426" + resolved "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz" integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== dependencies: eventemitter3 "^4.0.4" @@ -12532,9 +13034,18 @@ p-retry@^4.0.0, p-retry@^4.5.0: "@types/retry" "0.12.0" retry "^0.13.1" +p-retry@^6.2.0: + version "6.2.1" + resolved "https://registry.npmjs.org/p-retry/-/p-retry-6.2.1.tgz" + integrity sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ== + dependencies: + "@types/retry" "0.12.2" + is-network-error "^1.0.0" + retry "^0.13.1" + p-timeout@^3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" + resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz" integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== dependencies: p-finally "^1.0.0" @@ -12564,10 +13075,10 @@ package-json@^8.1.0: registry-url "^6.0.0" semver "^7.3.7" -package-manager-detector@^0.2.0: - version "0.2.2" - resolved "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-0.2.2.tgz" - integrity sha512-VgXbyrSNsml4eHWIvxxG/nTL4wgybMTXCV2Un/+yEc3aDKKU6nQBZjbeP3Pl3qm9Qg92X/1ng4ffvCeD/zwHgg== +package-manager-detector@^1.3.0: + version "1.6.0" + resolved "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.6.0.tgz" + integrity sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA== param-case@^3.0.4: version "3.0.4" @@ -12604,12 +13115,11 @@ parse-entities@^2.0.0: is-hexadecimal "^1.0.0" parse-entities@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz" - integrity sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w== + version "4.0.2" + resolved "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz" + integrity sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw== dependencies: "@types/unist" "^2.0.0" - character-entities "^2.0.0" character-entities-legacy "^3.0.0" character-reference-invalid "^2.0.0" decode-named-character-reference "^1.0.0" @@ -12651,13 +13161,13 @@ parse5@^5.0.0: integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== parse5@^7.0.0: - version "7.2.1" - resolved "https://registry.npmjs.org/parse5/-/parse5-7.2.1.tgz" - integrity sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ== + version "7.3.0" + resolved "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz" + integrity sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw== dependencies: - entities "^4.5.0" + entities "^6.0.0" -parseurl@~1.3.2, parseurl@~1.3.3: +parseurl@~1.3.3: version "1.3.3" resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== @@ -12710,11 +13220,6 @@ path-parse@^1.0.7: resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -path-to-regexp@0.1.10: - version "0.1.10" - resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz" - integrity sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w== - path-to-regexp@3.3.0: version "3.3.0" resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz" @@ -12727,6 +13232,11 @@ path-to-regexp@^1.7.0: dependencies: isarray "0.0.1" +path-to-regexp@~0.1.12: + version "0.1.13" + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz" + integrity sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA== + path-type@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" @@ -12740,30 +13250,30 @@ path@^0.12.7: process "^0.11.1" util "^0.10.3" -pathe@^1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz" - integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ== - -picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0: +picocolors@^1.0.0, picocolors@^1.1.1: version "1.1.1" resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + version "2.3.2" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz" + integrity sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA== picomatch@^4.0.2: version "4.0.2" resolved "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz" integrity sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg== +picomatch@^4.0.4: + version "4.0.4" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz" + integrity sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A== + pirates@^4.0.4: - version "4.0.6" - resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz" - integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + version "4.0.7" + resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz" + integrity sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA== pkg-dir@^4.1.0, pkg-dir@^4.2.0: version "4.2.0" @@ -12779,15 +13289,6 @@ pkg-dir@^7.0.0: dependencies: find-up "^6.3.0" -pkg-types@^1.0.3, pkg-types@^1.2.0: - version "1.2.1" - resolved "https://registry.npmjs.org/pkg-types/-/pkg-types-1.2.1.tgz" - integrity sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw== - dependencies: - confbox "^0.1.8" - mlly "^1.7.2" - pathe "^1.1.2" - pkg-up@^3.1.0: version "3.1.0" resolved "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz" @@ -12795,10 +13296,21 @@ pkg-up@^3.1.0: dependencies: find-up "^3.0.0" -plugin-image-zoom@ataft/plugin-image-zoom: +pkijs@^3.3.3: + version "3.4.0" + resolved "https://registry.npmjs.org/pkijs/-/pkijs-3.4.0.tgz" + integrity sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw== + dependencies: + "@noble/hashes" "1.4.0" + asn1js "^3.0.6" + bytestreamjs "^2.0.1" + pvtsutils "^1.3.6" + pvutils "^1.1.3" + tslib "^2.8.1" + +"plugin-image-zoom@https://github.com/ataft/plugin-image-zoom.git#8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de": version "1.1.0" - resolved "https://codeload.github.com/ataft/plugin-image-zoom/tar.gz/8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de" - integrity sha512-y/KQYx2qGrnMwB0zPxxN3g2teitLlHjGFJDoepfjJg2cC1AB5qCC9Bzp5YsNGQb2+Vw0Nd4O32b8FQGTgFSrVw== + resolved "https://github.com/ataft/plugin-image-zoom.git#8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de" dependencies: medium-zoom "^1.0.8" @@ -12816,9 +13328,9 @@ points-on-path@^0.2.1: points-on-curve "0.2.0" possible-typed-array-names@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz" - integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== + version "1.1.0" + resolved "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz" + integrity sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg== postcss-attribute-case-insensitive@^7.0.1: version "7.0.1" @@ -12850,15 +13362,15 @@ postcss-clamp@^4.1.0: dependencies: postcss-value-parser "^4.2.0" -postcss-color-functional-notation@^7.0.7: - version "7.0.7" - resolved "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.7.tgz" - integrity sha512-EZvAHsvyASX63vXnyXOIynkxhaHRSsdb7z6yiXKIovGXAolW4cMZ3qoh7k3VdTsLBS6VGdksGfIo3r6+waLoOw== +postcss-color-functional-notation@^7.0.12: + version "7.0.12" + resolved "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.12.tgz" + integrity sha512-TLCW9fN5kvO/u38/uesdpbx3e8AkTYhMvDZYa9JpmImWuTE99bDQ7GU7hdOADIZsiI9/zuxfAJxny/khknp1Zw== dependencies: - "@csstools/css-color-parser" "^3.0.7" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/postcss-progressive-custom-properties" "^4.0.0" + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" postcss-color-hex-alpha@^10.0.0: @@ -12913,35 +13425,35 @@ postcss-convert-values@^6.1.0: browserslist "^4.23.0" postcss-value-parser "^4.2.0" -postcss-custom-media@^11.0.5: - version "11.0.5" - resolved "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-11.0.5.tgz" - integrity sha512-SQHhayVNgDvSAdX9NQ/ygcDQGEY+aSF4b/96z7QUX6mqL5yl/JgG/DywcF6fW9XbnCRE+aVYk+9/nqGuzOPWeQ== - dependencies: - "@csstools/cascade-layer-name-parser" "^2.0.4" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/media-query-list-parser" "^4.0.2" - -postcss-custom-properties@^14.0.4: - version "14.0.4" - resolved "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-14.0.4.tgz" - integrity sha512-QnW8FCCK6q+4ierwjnmXF9Y9KF8q0JkbgVfvQEMa93x1GT8FvOiUevWCN2YLaOWyByeDX8S6VFbZEeWoAoXs2A== - dependencies: - "@csstools/cascade-layer-name-parser" "^2.0.4" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" +postcss-custom-media@^11.0.6: + version "11.0.6" + resolved "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-11.0.6.tgz" + integrity sha512-C4lD4b7mUIw+RZhtY7qUbf4eADmb7Ey8BFA2px9jUbwg7pjTZDl4KY4bvlUV+/vXQvzQRfiGEVJyAbtOsCMInw== + dependencies: + "@csstools/cascade-layer-name-parser" "^2.0.5" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/media-query-list-parser" "^4.0.3" + +postcss-custom-properties@^14.0.6: + version "14.0.6" + resolved "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-14.0.6.tgz" + integrity sha512-fTYSp3xuk4BUeVhxCSJdIPhDLpJfNakZKoiTDx7yRGCdlZrSJR7mWKVOBS4sBF+5poPQFMj2YdXx1VHItBGihQ== + dependencies: + "@csstools/cascade-layer-name-parser" "^2.0.5" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" "@csstools/utilities" "^2.0.0" postcss-value-parser "^4.2.0" -postcss-custom-selectors@^8.0.4: - version "8.0.4" - resolved "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-8.0.4.tgz" - integrity sha512-ASOXqNvDCE0dAJ/5qixxPeL1aOVGHGW2JwSy7HyjWNbnWTQCl+fDc968HY1jCmZI0+BaYT5CxsOiUhavpG/7eg== +postcss-custom-selectors@^8.0.5: + version "8.0.5" + resolved "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-8.0.5.tgz" + integrity sha512-9PGmckHQswiB2usSO6XMSswO2yFWVoCAuih1yl9FVcwkscLjRKjwsjM3t+NIWpSU2Jx3eOiK2+t4vVTQaoCHHg== dependencies: - "@csstools/cascade-layer-name-parser" "^2.0.4" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" + "@csstools/cascade-layer-name-parser" "^2.0.5" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" postcss-selector-parser "^7.0.0" postcss-dir-pseudo-class@^9.0.1: @@ -13005,12 +13517,12 @@ postcss-discard-unused@^6.0.5: dependencies: postcss-selector-parser "^6.0.16" -postcss-double-position-gradients@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.0.tgz" - integrity sha512-JkIGah3RVbdSEIrcobqj4Gzq0h53GG4uqDPsho88SgY84WnpkTpI0k50MFK/sX7XqVisZ6OqUfFnoUO6m1WWdg== +postcss-double-position-gradients@^6.0.4: + version "6.0.4" + resolved "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.4.tgz" + integrity sha512-m6IKmxo7FxSP5nF2l63QbCC3r+bWpFUWmZXZf096WxG0m7Vl1Q1+ruFOhpdDRmKrRS+S3Jtk+TVk/7z0+BVK6g== dependencies: - "@csstools/postcss-progressive-custom-properties" "^4.0.0" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" postcss-value-parser "^4.2.0" @@ -13046,18 +13558,18 @@ postcss-image-set-function@^7.0.0: "@csstools/utilities" "^2.0.0" postcss-value-parser "^4.2.0" -postcss-lab-function@^7.0.7: - version "7.0.7" - resolved "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-7.0.7.tgz" - integrity sha512-+ONj2bpOQfsCKZE2T9VGMyVVdGcGUpr7u3SVfvkJlvhTRmDCfY25k4Jc8fubB9DclAPR4+w8uVtDZmdRgdAHig== +postcss-lab-function@^7.0.12: + version "7.0.12" + resolved "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-7.0.12.tgz" + integrity sha512-tUcyRk1ZTPec3OuKFsqtRzW2Go5lehW29XA21lZ65XmzQkz43VY2tyWEC202F7W3mILOjw0voOiuxRGTsN+J9w== dependencies: - "@csstools/css-color-parser" "^3.0.7" - "@csstools/css-parser-algorithms" "^3.0.4" - "@csstools/css-tokenizer" "^3.0.3" - "@csstools/postcss-progressive-custom-properties" "^4.0.0" + "@csstools/css-color-parser" "^3.1.0" + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" -postcss-loader@^7.0.0, postcss-loader@^7.3.3: +postcss-loader@^7.0.0, postcss-loader@^7.3.4: version "7.3.4" resolved "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.3.4.tgz" integrity sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A== @@ -13066,10 +13578,10 @@ postcss-loader@^7.0.0, postcss-loader@^7.3.3: jiti "^1.20.0" semver "^7.5.4" -postcss-logical@^8.0.0: - version "8.0.0" - resolved "https://registry.npmjs.org/postcss-logical/-/postcss-logical-8.0.0.tgz" - integrity sha512-HpIdsdieClTjXLOyYdUPAX/XQASNIwdKt5hoZW08ZOAiI+tbV0ta1oclkpVkW5ANU+xJvk3KkA0FejkjGLXUkg== +postcss-logical@^8.1.0: + version "8.1.0" + resolved "https://registry.npmjs.org/postcss-logical/-/postcss-logical-8.1.0.tgz" + integrity sha512-pL1hXFQ2fEXNKiNiAgtfA005T9FBxky5zkX6s4GZM2D8RkVgRqz3f4g1JUoq925zXv495qk8UNldDwh8uGEDoA== dependencies: postcss-value-parser "^4.2.0" @@ -13195,20 +13707,20 @@ postcss-modules-extract-imports@^3.1.0: integrity sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q== postcss-modules-local-by-default@^4.0.5: - version "4.0.5" - resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz" - integrity sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw== + version "4.2.0" + resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz" + integrity sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw== dependencies: icss-utils "^5.0.0" - postcss-selector-parser "^6.0.2" + postcss-selector-parser "^7.0.0" postcss-value-parser "^4.1.0" postcss-modules-scope@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz" - integrity sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ== + version "3.2.1" + resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz" + integrity sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA== dependencies: - postcss-selector-parser "^6.0.4" + postcss-selector-parser "^7.0.0" postcss-modules-values@^4.0.0: version "4.0.0" @@ -13217,12 +13729,12 @@ postcss-modules-values@^4.0.0: dependencies: icss-utils "^5.0.0" -postcss-nesting@^13.0.1: - version "13.0.1" - resolved "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-13.0.1.tgz" - integrity sha512-VbqqHkOBOt4Uu3G8Dm8n6lU5+9cJFxiuty9+4rcoyRPO9zZS1JIs6td49VIoix3qYqELHlJIn46Oih9SAKo+yQ== +postcss-nesting@^13.0.2: + version "13.0.2" + resolved "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-13.0.2.tgz" + integrity sha512-1YCI290TX+VP0U/K/aFxzHzQWHWURL+CtHMSbex1lCdpXD1SoR2sYuxDu5aNI9lPoXpKTCggFZiDJbwylU0LEQ== dependencies: - "@csstools/selector-resolve-nested" "^3.0.0" + "@csstools/selector-resolve-nested" "^3.1.0" "@csstools/selector-specificity" "^5.0.0" postcss-selector-parser "^7.0.0" @@ -13391,67 +13903,75 @@ postcss-place@^10.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-preset-env@^10.1.0: - version "10.1.3" - resolved "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.1.3.tgz" - integrity sha512-9qzVhcMFU/MnwYHyYpJz4JhGku/4+xEiPTmhn0hj3IxnUYlEF9vbh7OC1KoLAnenS6Fgg43TKNp9xcuMeAi4Zw== - dependencies: - "@csstools/postcss-cascade-layers" "^5.0.1" - "@csstools/postcss-color-function" "^4.0.7" - "@csstools/postcss-color-mix-function" "^3.0.7" - "@csstools/postcss-content-alt-text" "^2.0.4" - "@csstools/postcss-exponential-functions" "^2.0.6" +postcss-preset-env@^10.2.1: + version "10.6.1" + resolved "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.6.1.tgz" + integrity sha512-yrk74d9EvY+W7+lO9Aj1QmjWY9q5NsKjK2V9drkOPZB/X6KZ0B3igKsHUYakb7oYVhnioWypQX3xGuePf89f3g== + dependencies: + "@csstools/postcss-alpha-function" "^1.0.1" + "@csstools/postcss-cascade-layers" "^5.0.2" + "@csstools/postcss-color-function" "^4.0.12" + "@csstools/postcss-color-function-display-p3-linear" "^1.0.1" + "@csstools/postcss-color-mix-function" "^3.0.12" + "@csstools/postcss-color-mix-variadic-function-arguments" "^1.0.2" + "@csstools/postcss-content-alt-text" "^2.0.8" + "@csstools/postcss-contrast-color-function" "^2.0.12" + "@csstools/postcss-exponential-functions" "^2.0.9" "@csstools/postcss-font-format-keywords" "^4.0.0" - "@csstools/postcss-gamut-mapping" "^2.0.7" - "@csstools/postcss-gradients-interpolation-method" "^5.0.7" - "@csstools/postcss-hwb-function" "^4.0.7" - "@csstools/postcss-ic-unit" "^4.0.0" - "@csstools/postcss-initial" "^2.0.0" - "@csstools/postcss-is-pseudo-class" "^5.0.1" - "@csstools/postcss-light-dark-function" "^2.0.7" + "@csstools/postcss-gamut-mapping" "^2.0.11" + "@csstools/postcss-gradients-interpolation-method" "^5.0.12" + "@csstools/postcss-hwb-function" "^4.0.12" + "@csstools/postcss-ic-unit" "^4.0.4" + "@csstools/postcss-initial" "^2.0.1" + "@csstools/postcss-is-pseudo-class" "^5.0.3" + "@csstools/postcss-light-dark-function" "^2.0.11" "@csstools/postcss-logical-float-and-clear" "^3.0.0" "@csstools/postcss-logical-overflow" "^2.0.0" "@csstools/postcss-logical-overscroll-behavior" "^2.0.0" "@csstools/postcss-logical-resize" "^3.0.0" - "@csstools/postcss-logical-viewport-units" "^3.0.3" - "@csstools/postcss-media-minmax" "^2.0.6" - "@csstools/postcss-media-queries-aspect-ratio-number-values" "^3.0.4" + "@csstools/postcss-logical-viewport-units" "^3.0.4" + "@csstools/postcss-media-minmax" "^2.0.9" + "@csstools/postcss-media-queries-aspect-ratio-number-values" "^3.0.5" "@csstools/postcss-nested-calc" "^4.0.0" - "@csstools/postcss-normalize-display-values" "^4.0.0" - "@csstools/postcss-oklab-function" "^4.0.7" - "@csstools/postcss-progressive-custom-properties" "^4.0.0" - "@csstools/postcss-random-function" "^1.0.2" - "@csstools/postcss-relative-color-syntax" "^3.0.7" + "@csstools/postcss-normalize-display-values" "^4.0.1" + "@csstools/postcss-oklab-function" "^4.0.12" + "@csstools/postcss-position-area-property" "^1.0.0" + "@csstools/postcss-progressive-custom-properties" "^4.2.1" + "@csstools/postcss-property-rule-prelude-list" "^1.0.0" + "@csstools/postcss-random-function" "^2.0.1" + "@csstools/postcss-relative-color-syntax" "^3.0.12" "@csstools/postcss-scope-pseudo-class" "^4.0.1" - "@csstools/postcss-sign-functions" "^1.1.1" - "@csstools/postcss-stepped-value-functions" "^4.0.6" - "@csstools/postcss-text-decoration-shorthand" "^4.0.1" - "@csstools/postcss-trigonometric-functions" "^4.0.6" + "@csstools/postcss-sign-functions" "^1.1.4" + "@csstools/postcss-stepped-value-functions" "^4.0.9" + "@csstools/postcss-syntax-descriptor-syntax-production" "^1.0.1" + "@csstools/postcss-system-ui-font-family" "^1.0.0" + "@csstools/postcss-text-decoration-shorthand" "^4.0.3" + "@csstools/postcss-trigonometric-functions" "^4.0.9" "@csstools/postcss-unset-value" "^4.0.0" - autoprefixer "^10.4.19" - browserslist "^4.23.1" + autoprefixer "^10.4.23" + browserslist "^4.28.1" css-blank-pseudo "^7.0.1" - css-has-pseudo "^7.0.2" + css-has-pseudo "^7.0.3" css-prefers-color-scheme "^10.0.0" - cssdb "^8.2.3" + cssdb "^8.6.0" postcss-attribute-case-insensitive "^7.0.1" postcss-clamp "^4.1.0" - postcss-color-functional-notation "^7.0.7" + postcss-color-functional-notation "^7.0.12" postcss-color-hex-alpha "^10.0.0" postcss-color-rebeccapurple "^10.0.0" - postcss-custom-media "^11.0.5" - postcss-custom-properties "^14.0.4" - postcss-custom-selectors "^8.0.4" + postcss-custom-media "^11.0.6" + postcss-custom-properties "^14.0.6" + postcss-custom-selectors "^8.0.5" postcss-dir-pseudo-class "^9.0.1" - postcss-double-position-gradients "^6.0.0" + postcss-double-position-gradients "^6.0.4" postcss-focus-visible "^10.0.1" postcss-focus-within "^9.0.1" postcss-font-variant "^5.0.0" postcss-gap-properties "^6.0.0" postcss-image-set-function "^7.0.0" - postcss-lab-function "^7.0.7" - postcss-logical "^8.0.0" - postcss-nesting "^13.0.1" + postcss-lab-function "^7.0.12" + postcss-logical "^8.1.0" + postcss-nesting "^13.0.2" postcss-opacity-percentage "^3.0.0" postcss-overflow-shorthand "^6.0.0" postcss-page-break "^3.0.4" @@ -13523,7 +14043,7 @@ postcss-selector-not@^8.0.1: dependencies: postcss-selector-parser "^7.0.0" -postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.16, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: +postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.16, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: version "6.1.2" resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz" integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg== @@ -13532,9 +14052,9 @@ postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.16, postcss-select util-deprecate "^1.0.2" postcss-selector-parser@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz" - integrity sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ== + version "7.1.1" + resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz" + integrity sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" @@ -13598,13 +14118,13 @@ postcss-zindex@^6.0.2: resolved "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-6.0.2.tgz" integrity sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg== -postcss@^8.4.14, postcss@^8.4.17, postcss@^8.4.21, postcss@^8.4.24, postcss@^8.4.26, postcss@^8.4.33, postcss@^8.4.38: - version "8.4.47" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz" - integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== +postcss@^8.4.14, postcss@^8.4.17, postcss@^8.4.21, postcss@^8.4.24, postcss@^8.4.33, postcss@^8.5.4: + version "8.5.14" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz" + integrity sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg== dependencies: - nanoid "^3.3.7" - picocolors "^1.1.0" + nanoid "^3.3.11" + picocolors "^1.1.1" source-map-js "^1.2.1" prepend-http@^2.0.0: @@ -13635,17 +14155,17 @@ pretty-time@^1.1.0: integrity sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA== prism-react-renderer@^2.1.0, prism-react-renderer@^2.3.0: - version "2.4.0" - resolved "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-2.4.0.tgz" - integrity sha512-327BsVCD/unU4CNLZTWVHyUHKnsqcvj2qbPlQ8MiBE2eq2rgctjigPA1Gp9HLF83kZ20zNN6jgizHJeEsyFYOw== + version "2.4.1" + resolved "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-2.4.1.tgz" + integrity sha512-ey8Ls/+Di31eqzUxC46h8MksNuGx/n0AAC8uKpwFau4RPDYLuE3EXTp8N8G2vX2N7UC/+IXeNUnlWBGGcAG+Ig== dependencies: "@types/prismjs" "^1.26.0" clsx "^2.0.0" prismjs@^1.29.0: - version "1.29.0" - resolved "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz" - integrity sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q== + version "1.30.0" + resolved "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz" + integrity sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw== process-nextick-args@~2.0.0: version "2.0.1" @@ -13681,10 +14201,10 @@ property-information@^5.0.0, property-information@^5.3.0: dependencies: xtend "^4.0.0" -property-information@^6.0.0: - version "6.5.0" - resolved "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz" - integrity sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig== +property-information@^7.0.0: + version "7.1.0" + resolved "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz" + integrity sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ== proto-list@~1.2.1: version "1.2.4" @@ -13701,28 +14221,30 @@ proxy-addr@~2.0.7: proxy-from-env@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-2.1.0.tgz#a7487568adad577cfaaa7e88c49cab3ab3081aba" + resolved "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz" integrity sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA== psl@^1.1.33: - version "1.9.0" - resolved "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz" - integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== + version "1.15.0" + resolved "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz" + integrity sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w== + dependencies: + punycode "^2.3.1" pump@^3.0.0: - version "3.0.2" - resolved "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz" - integrity sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw== + version "3.0.4" + resolved "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz" + integrity sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA== dependencies: end-of-stream "^1.1.0" once "^1.3.1" punycode@1.3.2: version "1.3.2" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + resolved "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz" integrity sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw== -punycode@^2.1.0, punycode@^2.1.1: +punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.1: version "2.3.1" resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== @@ -13735,32 +14257,44 @@ pupa@^2.1.1: escape-goat "^2.0.0" pupa@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/pupa/-/pupa-3.1.0.tgz" - integrity sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug== + version "3.3.0" + resolved "https://registry.npmjs.org/pupa/-/pupa-3.3.0.tgz" + integrity sha512-LjgDO2zPtoXP2wJpDjZrGdojii1uqO0cnwKoIoUzkfS98HDmbeiGmYiXo3lXeFlq2xvne1QFQhwYXSUCLKtEuA== dependencies: escape-goat "^4.0.0" +pvtsutils@^1.3.6: + version "1.3.6" + resolved "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.6.tgz" + integrity sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg== + dependencies: + tslib "^2.8.1" + +pvutils@^1.1.3, pvutils@^1.1.5: + version "1.1.5" + resolved "https://registry.npmjs.org/pvutils/-/pvutils-1.1.5.tgz" + integrity sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA== + q@^1.1.2: version "1.5.1" resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz" integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== -qs@6.13.0: - version "6.13.0" - resolved "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz" - integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== +qs@~6.15.1: + version "6.15.1" + resolved "https://registry.npmjs.org/qs/-/qs-6.15.1.tgz" + integrity sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg== dependencies: - side-channel "^1.0.6" + side-channel "^1.1.0" querystring@0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz" integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g== querystring@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd" + resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz" integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg== querystringify@^2.1.1: @@ -13802,15 +14336,15 @@ range-parser@^1.2.1, range-parser@~1.2.1: resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -raw-body@2.5.2: - version "2.5.2" - resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz" - integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== +raw-body@~2.5.3: + version "2.5.3" + resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz" + integrity sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA== dependencies: - bytes "3.1.2" - http-errors "2.0.0" - iconv-lite "0.4.24" - unpipe "1.0.0" + bytes "~3.1.2" + http-errors "~2.0.1" + iconv-lite "~0.4.24" + unpipe "~1.0.0" rc@1.2.8, rc@^1.2.8: version "1.2.8" @@ -13861,16 +14395,16 @@ react-dom@^18.2.1: scheduler "^0.23.2" react-error-overlay@^6.0.11: - version "6.0.11" - resolved "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz" - integrity sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg== + version "6.1.0" + resolved "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.1.0.tgz" + integrity sha512-SN/U6Ytxf1QGkw/9ve5Y+NxBbZM6Ht95tuXNMKs8EJyFa/Vy/+Co3stop3KBHARfn/giv+Lj1uUnTfOJ3moFEQ== react-fast-compare@^3.2.0: version "3.2.2" resolved "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz" integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== -react-helmet-async@^1.3.0, "react-helmet-async@npm:@slorber/react-helmet-async@*", "react-helmet-async@npm:@slorber/react-helmet-async@1.3.0": +react-helmet-async@^1.3.0, "react-helmet-async@npm:@slorber/react-helmet-async@1.3.0": version "1.3.0" resolved "https://registry.npmjs.org/@slorber/react-helmet-async/-/react-helmet-async-1.3.0.tgz" integrity sha512-e9/OK8VhwUSc67diWI8Rb3I0YgI9/SBQtnhe9aEuK6MhZm7ntZZimXgwXnd8W96YTmSOb9M4d8LwhRZyhWr/1A== @@ -13891,20 +14425,20 @@ react-is@^17.0.1: resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== -react-json-view-lite@^1.2.0: - version "1.5.0" - resolved "https://registry.npmjs.org/react-json-view-lite/-/react-json-view-lite-1.5.0.tgz" - integrity sha512-nWqA1E4jKPklL2jvHWs6s+7Na0qNgw9HCP6xehdQJeg6nPBTFZgGwyko9Q0oj+jQWKTTVRS30u0toM5wiuL3iw== +react-json-view-lite@^2.3.0: + version "2.5.0" + resolved "https://registry.npmjs.org/react-json-view-lite/-/react-json-view-lite-2.5.0.tgz" + integrity sha512-tk7o7QG9oYyELWHL8xiMQ8x4WzjCzbWNyig3uexmkLb54r8jO0yH3WCWx8UZS0c49eSA4QUmG5caiRJ8fAn58g== react-lifecycles-compat@^3.0.0: version "3.0.4" resolved "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz" integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== -react-loadable-ssr-addon-v5-slorber@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/react-loadable-ssr-addon-v5-slorber/-/react-loadable-ssr-addon-v5-slorber-1.0.1.tgz" - integrity sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A== +react-loadable-ssr-addon-v5-slorber@^1.0.1, react-loadable-ssr-addon-v5-slorber@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/react-loadable-ssr-addon-v5-slorber/-/react-loadable-ssr-addon-v5-slorber-1.0.3.tgz" + integrity sha512-GXfh9VLwB5ERaCsU6RULh7tkemeX15aNh6wuMEBtfdyMa7fFG8TXrhXlx1SoEK2Ty/l6XIkzzYIQmyaWW3JgdQ== dependencies: "@babel/runtime" "^7.10.3" @@ -13924,9 +14458,9 @@ react-loadable-ssr-addon-v5-slorber@^1.0.1: "@types/react" "*" react-modal@^3.14.4: - version "3.16.1" - resolved "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz" - integrity sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg== + version "3.16.3" + resolved "https://registry.npmjs.org/react-modal/-/react-modal-3.16.3.tgz" + integrity sha512-yCYRJB5YkeQDQlTt17WGAgFJ7jr2QYcWa1SHqZ3PluDmnKJ/7+tVU+E6uKyZ0nODaeEj+xCpK4LcSnKXLMC0Nw== dependencies: exenv "^1.2.0" prop-types "^15.7.2" @@ -13969,9 +14503,9 @@ react-router@5.3.4, react-router@^5.3.3, react-router@^5.3.4: tiny-warning "^1.0.0" react-select@^5.7.3: - version "5.8.2" - resolved "https://registry.npmjs.org/react-select/-/react-select-5.8.2.tgz" - integrity sha512-a/LkOckoI62710gGPQSQqUp7A10fGbH/ya3/IR49qaq3XoBvwymgD5mJgtiHxBDsutyEQfdKNycWVh8Cg8UCjw== + version "5.10.2" + resolved "https://registry.npmjs.org/react-select/-/react-select-5.10.2.tgz" + integrity sha512-Z33nHdEFWq9tfnfVXaiM12rbJmk+QjFEztWLtmXqQhz6Al4UZZ9xc0wiatmGtUOCCnHN0WizL3tCMYRENX4rVQ== dependencies: "@babel/runtime" "^7.12.0" "@emotion/cache" "^11.4.0" @@ -13981,7 +14515,7 @@ react-select@^5.7.3: memoize-one "^6.0.0" prop-types "^15.6.0" react-transition-group "^4.3.0" - use-isomorphic-layout-effect "^1.1.2" + use-isomorphic-layout-effect "^1.2.0" react-transition-group@^4.3.0: version "4.4.5" @@ -14029,11 +14563,6 @@ readdirp@~3.6.0: dependencies: picomatch "^2.2.1" -reading-time@^1.5.0: - version "1.5.0" - resolved "https://registry.npmjs.org/reading-time/-/reading-time-1.5.0.tgz" - integrity sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg== - rechoir@^0.6.2: version "0.6.2" resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz" @@ -14058,9 +14587,9 @@ recma-build-jsx@^1.0.0: vfile "^6.0.0" recma-jsx@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/recma-jsx/-/recma-jsx-1.0.0.tgz" - integrity sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q== + version "1.0.1" + resolved "https://registry.npmjs.org/recma-jsx/-/recma-jsx-1.0.1.tgz" + integrity sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w== dependencies: acorn-jsx "^5.0.0" estree-util-to-js "^2.0.0" @@ -14095,10 +14624,29 @@ recursive-readdir@^2.2.2: dependencies: minimatch "^3.0.5" -regenerate-unicode-properties@^10.2.0: - version "10.2.0" - resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz" - integrity sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA== +reflect-metadata@^0.2.2: + version "0.2.2" + resolved "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz" + integrity sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q== + +reflect.getprototypeof@^1.0.6, reflect.getprototypeof@^1.0.9: + version "1.0.10" + resolved "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz" + integrity sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw== + dependencies: + call-bind "^1.0.8" + define-properties "^1.2.1" + es-abstract "^1.23.9" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.7" + get-proto "^1.0.1" + which-builtin-type "^1.2.1" + +regenerate-unicode-properties@^10.2.2: + version "10.2.2" + resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz" + integrity sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g== dependencies: regenerate "^1.4.2" @@ -14107,39 +14655,29 @@ regenerate@^1.4.2: resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== -regenerator-runtime@^0.14.0: - version "0.14.1" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz" - integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== - -regenerator-transform@^0.15.2: - version "0.15.2" - resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz" - integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== - dependencies: - "@babel/runtime" "^7.8.4" - -regexp.prototype.flags@^1.5.2: - version "1.5.3" - resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz" - integrity sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ== +regexp.prototype.flags@^1.5.4: + version "1.5.4" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz" + integrity sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA== dependencies: - call-bind "^1.0.7" + call-bind "^1.0.8" define-properties "^1.2.1" es-errors "^1.3.0" + get-proto "^1.0.1" + gopd "^1.2.0" set-function-name "^2.0.2" -regexpu-core@^6.1.1: - version "6.1.1" - resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.1.1.tgz" - integrity sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw== +regexpu-core@^6.3.1: + version "6.4.0" + resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.4.0.tgz" + integrity sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA== dependencies: regenerate "^1.4.2" - regenerate-unicode-properties "^10.2.0" + regenerate-unicode-properties "^10.2.2" regjsgen "^0.8.0" - regjsparser "^0.11.0" + regjsparser "^0.13.0" unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.1.0" + unicode-match-property-value-ecmascript "^2.2.1" registry-auth-token@^4.0.0: version "4.2.2" @@ -14149,11 +14687,11 @@ registry-auth-token@^4.0.0: rc "1.2.8" registry-auth-token@^5.0.1: - version "5.0.2" - resolved "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz" - integrity sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ== + version "5.1.1" + resolved "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.1.1.tgz" + integrity sha512-P7B4+jq8DeD2nMsAcdfaqHbssgHtZ7Z5+++a5ask90fvmJ8p5je4mOa+wzu+DB4vQ5tdJV/xywY+UnVFeQLV5Q== dependencies: - "@pnpm/npm-conf" "^2.1.0" + "@pnpm/npm-conf" "^3.0.2" registry-url@^5.0.0: version "5.1.0" @@ -14174,12 +14712,12 @@ regjsgen@^0.8.0: resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz" integrity sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q== -regjsparser@^0.11.0: - version "0.11.2" - resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.11.2.tgz" - integrity sha512-3OGZZ4HoLJkkAZx/48mTXJNlmqTGOzc0o9OWQPuWpkOlXXPbyN6OafCcoXUnBqE2D3f/T5L+pWc1kdEmnfnRsA== +regjsparser@^0.13.0: + version "0.13.1" + resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.1.tgz" + integrity sha512-dLsljMd9sqwRkby8zhO1gSg3PnJIBFid8f4CQj/sXx+7cKx+E7u0PKhZ+U4wmhx7EfmtvnA318oVaIkAB1lRJw== dependencies: - jsesc "~3.0.2" + jsesc "~3.1.0" rehype-parse@^6.0.2: version "6.0.2" @@ -14223,9 +14761,9 @@ remark-admonitions@^1.2.1: unist-util-visit "^2.0.1" remark-directive@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/remark-directive/-/remark-directive-3.0.0.tgz" - integrity sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA== + version "3.0.1" + resolved "https://registry.npmjs.org/remark-directive/-/remark-directive-3.0.1.tgz" + integrity sha512-gwglrEQEZcZYgVyG1tQuA+h58EZfq5CSULw7J90AFuCTyib1thgHPoqQ+h9iFvU6R+vnZ5oNFQR5QKgGpk741A== dependencies: "@types/mdast" "^4.0.0" mdast-util-directive "^3.0.0" @@ -14259,7 +14797,7 @@ remark-footnotes@2.0.0: remark-frontmatter@3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/remark-frontmatter/-/remark-frontmatter-3.0.0.tgz#ca5d996361765c859bd944505f377d6b186a6ec6" + resolved "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-3.0.0.tgz" integrity sha512-mSuDd3svCHs+2PyO29h7iijIZx4plX0fheacJcAoYAASfgzgVIcXGYSq9GFyYocFLftQs8IOmmkgtOovs6d4oA== dependencies: mdast-util-frontmatter "^0.2.0" @@ -14276,9 +14814,9 @@ remark-frontmatter@^5.0.0: unified "^11.0.0" remark-gfm@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.0.tgz" - integrity sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA== + version "4.0.1" + resolved "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz" + integrity sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg== dependencies: "@types/mdast" "^4.0.0" mdast-util-gfm "^3.0.0" @@ -14302,9 +14840,9 @@ remark-mdx@1.6.22: unified "9.2.0" remark-mdx@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.0.tgz" - integrity sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA== + version "3.1.1" + resolved "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.1.tgz" + integrity sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg== dependencies: mdast-util-mdx "^3.0.0" micromark-extension-mdxjs "^3.0.0" @@ -14333,7 +14871,7 @@ remark-parse@8.0.3: remark-parse@9, remark-parse@^9.0.0: version "9.0.0" - resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-9.0.0.tgz#4d20a299665880e4f4af5d90b7c7b8a935853640" + resolved "https://registry.npmjs.org/remark-parse/-/remark-parse-9.0.0.tgz" integrity sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw== dependencies: mdast-util-from-markdown "^0.8.0" @@ -14349,9 +14887,9 @@ remark-parse@^11.0.0: unified "^11.0.0" remark-rehype@^11.0.0: - version "11.1.1" - resolved "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.1.tgz" - integrity sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ== + version "11.1.2" + resolved "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz" + integrity sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw== dependencies: "@types/hast" "^3.0.0" "@types/mdast" "^4.0.0" @@ -14368,7 +14906,7 @@ remark-squeeze-paragraphs@4.0.0: remark-stringify@9.0.1, remark-stringify@^9.0.0: version "9.0.1" - resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-9.0.1.tgz#576d06e910548b0a7191a71f27b33f1218862894" + resolved "https://registry.npmjs.org/remark-stringify/-/remark-stringify-9.0.1.tgz" integrity sha512-mWmNg3ZtESvZS8fv5PTvaPckdL4iNlCHTt8/e/8oN08nArHRHjNZMKzA/YW3+p7/lYqIw4nx1XsjCBo/AxNChg== dependencies: mdast-util-to-markdown "^0.6.0" @@ -14384,7 +14922,7 @@ remark-stringify@^11.0.0: remark@13.0.0: version "13.0.0" - resolved "https://registry.yarnpkg.com/remark/-/remark-13.0.0.tgz#d15d9bf71a402f40287ebe36067b66d54868e425" + resolved "https://registry.npmjs.org/remark/-/remark-13.0.0.tgz" integrity sha512-HDz1+IKGtOyWN+QgBiAT0kn+2s6ovOxHyPAFGKVE81VSzJ+mq7RwHFledEvB5F1p4iJvOah/LOKdFuzvRnNLCA== dependencies: remark-parse "^9.0.0" @@ -14402,7 +14940,7 @@ renderkid@^3.0.0: lodash "^4.17.21" strip-ansi "^6.0.1" -repeat-string@^1.0.0, repeat-string@^1.5.4, repeat-string@^1.6.1: +repeat-string@^1.0.0, repeat-string@^1.5.4: version "1.6.1" resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== @@ -14459,12 +14997,13 @@ resolve.exports@^1.1.0: resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz" integrity sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ== -resolve@^1.1.6, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.3.2: - version "1.22.8" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz" - integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== +resolve@^1.1.6, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.11, resolve@^1.3.2: + version "1.22.12" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz" + integrity sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA== dependencies: - is-core-module "^2.13.0" + es-errors "^1.3.0" + is-core-module "^2.16.1" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" @@ -14488,9 +15027,9 @@ retry@^0.13.1: integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + version "1.1.0" + resolved "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz" + integrity sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw== rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" @@ -14500,9 +15039,9 @@ rimraf@^3.0.0, rimraf@^3.0.2: glob "^7.1.3" robust-predicates@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz" - integrity sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg== + version "3.0.3" + resolved "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.3.tgz" + integrity sha512-NS3levdsRIUOmiJ8FZWCP7LG3QpJyrs/TE0Zpf1yvZu8cAJJ6QMW92H1c7kWpdIHo8RvmLxN/o2JXTKHp74lUA== roughjs@^4.6.6: version "4.6.6" @@ -14529,6 +15068,11 @@ rtlcss@^4.1.0: postcss "^8.4.21" strip-json-comments "^3.1.1" +run-applescript@^7.0.0: + version "7.1.0" + resolved "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz" + integrity sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q== + run-parallel@^1.1.9: version "1.2.0" resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" @@ -14542,20 +15086,21 @@ rw@1: integrity sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ== rxjs@^7.5.4: - version "7.8.1" - resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz" - integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + version "7.8.2" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz" + integrity sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA== dependencies: tslib "^2.1.0" -safe-array-concat@^1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz" - integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== +safe-array-concat@^1.1.3: + version "1.1.4" + resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.4.tgz" + integrity sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg== dependencies: - call-bind "^1.0.7" - get-intrinsic "^1.2.4" - has-symbols "^1.0.3" + call-bind "^1.0.9" + call-bound "^1.0.4" + get-intrinsic "^1.3.0" + has-symbols "^1.1.0" isarray "^2.0.5" safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0: @@ -14568,18 +15113,17 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-regex-test@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz" - integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== +safe-push-apply@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz" + integrity sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA== dependencies: - call-bind "^1.0.6" es-errors "^1.3.0" - is-regex "^1.1.4" + isarray "^2.0.5" safe-regex-test@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz#7f87dfb67a3150782eaaf18583ff5d1711ac10c1" + resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz" integrity sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw== dependencies: call-bound "^1.0.2" @@ -14588,7 +15132,7 @@ safe-regex-test@^1.1.0: safe-stable-stringify@^2.3.1: version "2.5.0" - resolved "https://registry.yarnpkg.com/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz#4ca2f8e385f2831c432a719b108a3bf7af42a1dd" + resolved "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz" integrity sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA== "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": @@ -14598,19 +15142,14 @@ safe-stable-stringify@^2.3.1: sax@1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" + resolved "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz" integrity sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA== -sax@>=0.6.0: +sax@>=0.6.0, sax@^1.2.4, sax@^1.5.0: version "1.6.0" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.6.0.tgz#da59637629307b97e7c4cb28e080a7bc38560d5b" + resolved "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz" integrity sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA== -sax@^1.2.4: - version "1.4.1" - resolved "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz" - integrity sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg== - sax@~1.2.4: version "1.2.4" resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz" @@ -14630,6 +15169,11 @@ scheduler@^0.23.2: dependencies: loose-envify "^1.1.0" +schema-dts@^1.1.2: + version "1.1.5" + resolved "https://registry.npmjs.org/schema-dts/-/schema-dts-1.1.5.tgz" + integrity sha512-RJr9EaCmsLzBX2NDiO5Z3ux2BVosNZN5jo0gWgsyKvxKIUL5R3swNvoorulAeL9kLB0iTSX7V6aokhla2m7xbg== + schema-utils@2.7.0: version "2.7.0" resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz" @@ -14648,7 +15192,7 @@ schema-utils@^2.6.5: ajv "^6.12.4" ajv-keywords "^3.5.2" -schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.2.0: +schema-utils@^3.0.0: version "3.3.0" resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz" integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== @@ -14657,10 +15201,10 @@ schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.2.0: ajv "^6.12.5" ajv-keywords "^3.5.2" -schema-utils@^4.0.0, schema-utils@^4.0.1: - version "4.2.0" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz" - integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== +schema-utils@^4.0.0, schema-utils@^4.0.1, schema-utils@^4.2.0, schema-utils@^4.3.0, schema-utils@^4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz" + integrity sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA== dependencies: "@types/json-schema" "^7.0.9" ajv "^8.9.0" @@ -14688,6 +15232,14 @@ selfsigned@^2.1.1: "@types/node-forge" "^1.3.0" node-forge "^1" +selfsigned@^5.5.0: + version "5.5.0" + resolved "https://registry.npmjs.org/selfsigned/-/selfsigned-5.5.0.tgz" + integrity sha512-ftnu3TW4+3eBfLRFnDEkzGxSF/10BJBkaLJuBHZX0kiPS7bRdlpZGu6YGt4KngMkdTwJE6MbjavFpqHvqVt+Ew== + dependencies: + "@peculiar/x509" "^1.14.2" + pkijs "^3.3.3" + semver-diff@^3.1.1: version "3.1.1" resolved "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz" @@ -14703,9 +15255,9 @@ semver-diff@^4.0.0: semver "^7.3.5" semver@7.x, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.5.3, semver@^7.5.4, semver@^7.7.1: - version "7.7.1" - resolved "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz" - integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA== + version "7.8.0" + resolved "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz" + integrity sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA== semver@^5.4.1: version "5.7.2" @@ -14717,24 +15269,24 @@ semver@^6.0.0, semver@^6.2.0, semver@^6.3.0, semver@^6.3.1: resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -send@0.19.0: - version "0.19.0" - resolved "https://registry.npmjs.org/send/-/send-0.19.0.tgz" - integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== +send@~0.19.0, send@~0.19.1: + version "0.19.2" + resolved "https://registry.npmjs.org/send/-/send-0.19.2.tgz" + integrity sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg== dependencies: debug "2.6.9" depd "2.0.0" destroy "1.2.0" - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" etag "~1.8.1" - fresh "0.5.2" - http-errors "2.0.0" + fresh "~0.5.2" + http-errors "~2.0.1" mime "1.6.0" ms "2.1.3" - on-finished "2.4.1" + on-finished "~2.4.1" range-parser "~1.2.1" - statuses "2.0.1" + statuses "~2.0.2" serialize-javascript@^6.0.0, serialize-javascript@^6.0.1: version "6.0.2" @@ -14743,43 +15295,43 @@ serialize-javascript@^6.0.0, serialize-javascript@^6.0.1: dependencies: randombytes "^2.1.0" -serve-handler@^6.1.3, serve-handler@^6.1.6: - version "6.1.6" - resolved "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.6.tgz" - integrity sha512-x5RL9Y2p5+Sh3D38Fh9i/iQ5ZK+e4xuXRd/pGbM4D13tgo/MGwbttUk8emytcr1YYzBYs+apnUngBDFYfpjPuQ== +serve-handler@^6.1.3, serve-handler@^6.1.7: + version "6.1.7" + resolved "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.7.tgz" + integrity sha512-CinAq1xWb0vR3twAv9evEU8cNWkXCb9kd5ePAHUKJBkOsUpR1wt/CvGdeca7vqumL1U5cSaeVQ6zZMxiJ3yWsg== dependencies: bytes "3.0.0" content-disposition "0.5.2" mime-types "2.1.18" - minimatch "3.1.2" + minimatch "3.1.5" path-is-inside "1.0.2" path-to-regexp "3.3.0" range-parser "1.2.0" serve-index@^1.9.1: - version "1.9.1" - resolved "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz" - integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== + version "1.9.2" + resolved "https://registry.npmjs.org/serve-index/-/serve-index-1.9.2.tgz" + integrity sha512-KDj11HScOaLmrPxl70KYNW1PksP4Nb/CLL2yvC+Qd2kHMPEEpfc4Re2e4FOay+bC/+XQl/7zAcWON3JVo5v3KQ== dependencies: - accepts "~1.3.4" + accepts "~1.3.8" batch "0.6.1" debug "2.6.9" escape-html "~1.0.3" - http-errors "~1.6.2" - mime-types "~2.1.17" - parseurl "~1.3.2" + http-errors "~1.8.0" + mime-types "~2.1.35" + parseurl "~1.3.3" -serve-static@1.16.2: - version "1.16.2" - resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz" - integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw== +serve-static@~1.16.2: + version "1.16.3" + resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz" + integrity sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA== dependencies: encodeurl "~2.0.0" escape-html "~1.0.3" parseurl "~1.3.3" - send "0.19.0" + send "~0.19.1" -set-function-length@^1.2.1, set-function-length@^1.2.2: +set-function-length@^1.2.2: version "1.2.2" resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== @@ -14801,12 +15353,16 @@ set-function-name@^2.0.2: functions-have-names "^1.2.3" has-property-descriptors "^1.0.2" -setprototypeof@1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz" - integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== +set-proto@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz" + integrity sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw== + dependencies: + dunder-proto "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" -setprototypeof@1.2.0: +setprototypeof@1.2.0, setprototypeof@~1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz" integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== @@ -14835,10 +15391,10 @@ shebang-regex@^3.0.0: resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -shell-quote@^1.7.3, shell-quote@^1.8.1: - version "1.8.1" - resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz" - integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== +shell-quote@^1.7.3, shell-quote@^1.8.3: + version "1.8.3" + resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz" + integrity sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw== shelljs@^0.8.5: version "0.8.5" @@ -14851,20 +15407,50 @@ shelljs@^0.8.5: showdown@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/showdown/-/showdown-2.1.0.tgz#1251f5ed8f773f0c0c7bfc8e6fd23581f9e545c5" + resolved "https://registry.npmjs.org/showdown/-/showdown-2.1.0.tgz" integrity sha512-/6NVYu4U819R2pUIk79n67SYgJHWCce0a5xTP979WbNp0FL9MN1I1QK662IDU1b6JzKTvmhgI7T7JYIxBi3kMQ== dependencies: commander "^9.0.0" -side-channel@^1.0.4, side-channel@^1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz" - integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== +side-channel-list@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz" + integrity sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w== dependencies: - call-bind "^1.0.7" es-errors "^1.3.0" - get-intrinsic "^1.2.4" - object-inspect "^1.13.1" + object-inspect "^1.13.4" + +side-channel-map@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz" + integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + +side-channel-weakmap@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz" + integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + side-channel-map "^1.0.1" + +side-channel@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz" + integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== + dependencies: + es-errors "^1.3.0" + object-inspect "^1.13.3" + side-channel-list "^1.0.0" + side-channel-map "^1.0.1" + side-channel-weakmap "^1.0.2" signal-exit@^3.0.2, signal-exit@^3.0.3: version "3.0.7" @@ -14886,9 +15472,9 @@ sisteransi@^1.0.5: integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== sitemap@^7.1.1: - version "7.1.2" - resolved "https://registry.npmjs.org/sitemap/-/sitemap-7.1.2.tgz" - integrity sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw== + version "7.1.3" + resolved "https://registry.npmjs.org/sitemap/-/sitemap-7.1.3.tgz" + integrity sha512-tAjEd+wt/YwnEbfNB2ht51ybBJxbEWwe5ki/Z//Wh0rpBFTCUSj46GnxUKEWzhfuJTsee8x3lybHxFgUMig2hw== dependencies: "@types/node" "^17.0.5" "@types/sax" "^1.2.1" @@ -14962,7 +15548,12 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@^0.7.0, source-map@^0.7.3: +source-map@^0.7.0: + version "0.7.6" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz" + integrity sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ== + +source-map@^0.7.3: version "0.7.4" resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz" integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== @@ -14979,7 +15570,7 @@ space-separated-tokens@^2.0.0: spark-md5@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/spark-md5/-/spark-md5-3.0.2.tgz#7952c4a30784347abcee73268e473b9c0167e3fc" + resolved "https://registry.npmjs.org/spark-md5/-/spark-md5-3.0.2.tgz" integrity sha512-wcFzz9cDfbuqe0FZzfi2or1sgyIrsDwmPwfZC4hiNidPdPINjeUwNfv5kldczoEAcjl9Y1L3SM7Uz2PUEQzxQw== spdy-transport@^3.0.0: @@ -15022,7 +15613,7 @@ stable@^0.1.8: stack-trace@0.0.x: version "0.0.10" - resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" + resolved "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz" integrity sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg== stack-utils@^2.0.3: @@ -15037,20 +15628,28 @@ state-toggle@^1.0.0: resolved "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz" integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ== -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== - -"statuses@>= 1.4.0 < 2": +"statuses@>= 1.5.0 < 2": version "1.5.0" resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== +statuses@~2.0.1, statuses@~2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz" + integrity sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw== + std-env@^3.0.1, std-env@^3.7.0: - version "3.7.0" - resolved "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz" - integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg== + version "3.10.0" + resolved "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz" + integrity sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg== + +stop-iteration-iterator@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz" + integrity sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ== + dependencies: + es-errors "^1.3.0" + internal-slot "^1.1.0" string-length@^4.0.1: version "4.0.2" @@ -15078,22 +15677,26 @@ string-width@^5.0.1, string-width@^5.1.2: emoji-regex "^9.2.2" strip-ansi "^7.0.1" -string.prototype.trim@^1.2.9: - version "1.2.9" - resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz" - integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== +string.prototype.trim@^1.2.10: + version "1.2.10" + resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz" + integrity sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA== dependencies: - call-bind "^1.0.7" + call-bind "^1.0.8" + call-bound "^1.0.2" + define-data-property "^1.1.4" define-properties "^1.2.1" - es-abstract "^1.23.0" + es-abstract "^1.23.5" es-object-atoms "^1.0.0" + has-property-descriptors "^1.0.2" -string.prototype.trimend@^1.0.8: - version "1.0.8" - resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz" - integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== +string.prototype.trimend@^1.0.9: + version "1.0.9" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz" + integrity sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ== dependencies: - call-bind "^1.0.7" + call-bind "^1.0.8" + call-bound "^1.0.2" define-properties "^1.2.1" es-object-atoms "^1.0.0" @@ -15145,11 +15748,11 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1: ansi-regex "^5.0.1" strip-ansi@^7.0.1: - version "7.1.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" - integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + version "7.2.0" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz" + integrity sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w== dependencies: - ansi-regex "^6.0.1" + ansi-regex "^6.2.2" strip-bom-string@^1.0.0: version "1.0.0" @@ -15181,6 +15784,13 @@ strip-json-comments@~2.0.1: resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== +style-to-js@^1.0.0: + version "1.1.21" + resolved "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz" + integrity sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ== + dependencies: + style-to-object "1.0.14" + style-to-object@0.3.0, style-to-object@^0.3.0: version "0.3.0" resolved "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz" @@ -15188,19 +15798,12 @@ style-to-object@0.3.0, style-to-object@^0.3.0: dependencies: inline-style-parser "0.1.1" -style-to-object@^0.4.0: - version "0.4.4" - resolved "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz" - integrity sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg== - dependencies: - inline-style-parser "0.1.1" - -style-to-object@^1.0.0: - version "1.0.8" - resolved "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.8.tgz" - integrity sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g== +style-to-object@1.0.14: + version "1.0.14" + resolved "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz" + integrity sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw== dependencies: - inline-style-parser "0.2.4" + inline-style-parser "0.2.7" stylehacks@^5.1.1: version "5.1.1" @@ -15223,10 +15826,10 @@ stylis@4.2.0: resolved "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz" integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== -stylis@^4.3.1: - version "4.3.4" - resolved "https://registry.npmjs.org/stylis/-/stylis-4.3.4.tgz" - integrity sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now== +stylis@^4.3.6: + version "4.4.0" + resolved "https://registry.npmjs.org/stylis/-/stylis-4.4.0.tgz" + integrity sha512-5Z9ZpRzfuH6l/UAvCPAPUo3665Nk2wLaZU3x+TLHKVzIz33+sbJqbtrYoC3KD4/uVOr2Zp+L0LySezP9OHV9yA== supports-color@^5.3.0: version "5.5.0" @@ -15287,35 +15890,35 @@ svgo@^1.2.2: util.promisify "~1.0.0" svgo@^2.7.0, svgo@^2.8.0: - version "2.8.0" - resolved "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz" - integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== + version "2.8.2" + resolved "https://registry.npmjs.org/svgo/-/svgo-2.8.2.tgz" + integrity sha512-TyzE4NVGLUFy+H/Uy4N6c3G0HEeprsVfge6Lmq+0FdQQ/zqoVYB62IsBZORsiL+o96s6ff/V6/3UQo/C0cgCAA== dependencies: - "@trysound/sax" "0.2.0" commander "^7.2.0" css-select "^4.1.3" css-tree "^1.1.3" csso "^4.2.0" picocolors "^1.0.0" + sax "^1.5.0" stable "^0.1.8" svgo@^3.0.2, svgo@^3.2.0: - version "3.3.2" - resolved "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz" - integrity sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw== + version "3.3.3" + resolved "https://registry.npmjs.org/svgo/-/svgo-3.3.3.tgz" + integrity sha512-+wn7I4p7YgJhHs38k2TNjy1vCfPIfLIJWR5MnCStsN8WuuTcBnRKcMHQLMM2ijxGZmDoZwNv8ipl5aTTen62ng== dependencies: - "@trysound/sax" "0.2.0" commander "^7.2.0" css-select "^5.1.0" css-tree "^2.3.1" css-what "^6.1.0" csso "^5.0.5" picocolors "^1.0.0" + sax "^1.5.0" swc-loader@^0.2.6: - version "0.2.6" - resolved "https://registry.npmjs.org/swc-loader/-/swc-loader-0.2.6.tgz" - integrity sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg== + version "0.2.7" + resolved "https://registry.npmjs.org/swc-loader/-/swc-loader-0.2.7.tgz" + integrity sha512-nwYWw3Fh9ame3Rtm7StS9SBLpHRRnYcK7bnpF3UKZmesAK0gw2/ADvlURFAINmPvKtDLzp+GBiP9yLoEjg6S9w== dependencies: "@swc/counter" "^0.1.3" @@ -15329,10 +15932,10 @@ tapable@^1.0.0: resolved "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz" integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== -tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0, tapable@^2.2.1: - version "2.2.1" - resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" - integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== +tapable@^2.0.0, tapable@^2.2.1, tapable@^2.3.0, tapable@^2.3.3: + version "2.3.3" + resolved "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz" + integrity sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A== terminal-link@^2.0.0: version "2.1.1" @@ -15342,24 +15945,23 @@ terminal-link@^2.0.0: ansi-escapes "^4.2.1" supports-hyperlinks "^2.0.0" -terser-webpack-plugin@^5.3.1, terser-webpack-plugin@^5.3.10, terser-webpack-plugin@^5.3.9: - version "5.3.10" - resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz" - integrity sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w== +terser-webpack-plugin@^5.3.1, terser-webpack-plugin@^5.3.17, terser-webpack-plugin@^5.3.9: + version "5.6.0" + resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.6.0.tgz" + integrity sha512-Eum+5ajkaOhf5KbM26osvv21kLD7BaGqQ1UA4Ami4arYwylmGUQTgHFpHDdmJod1q4QXa66p0to/FBKID+J1vA== dependencies: - "@jridgewell/trace-mapping" "^0.3.20" + "@jridgewell/trace-mapping" "^0.3.25" jest-worker "^27.4.5" - schema-utils "^3.1.1" - serialize-javascript "^6.0.1" - terser "^5.26.0" + schema-utils "^4.3.0" + terser "^5.31.1" -terser@^5.10.0, terser@^5.15.1, terser@^5.26.0: - version "5.36.0" - resolved "https://registry.npmjs.org/terser/-/terser-5.36.0.tgz" - integrity sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w== +terser@^5.10.0, terser@^5.15.1, terser@^5.31.1: + version "5.47.1" + resolved "https://registry.npmjs.org/terser/-/terser-5.47.1.tgz" + integrity sha512-tPbLXTI6ohPASb/1YViL428oEHu6/qv1OxqYnfaonVCFHqx4+wCd95pHrQWsL5X4pl90CTyW9piSAsS2L0VoMw== dependencies: "@jridgewell/source-map" "^0.3.3" - acorn "^8.8.2" + acorn "^8.15.0" commander "^2.20.0" source-map-support "~0.5.20" @@ -15374,7 +15976,7 @@ test-exclude@^6.0.0: text-hex@1.0.x: version "1.0.0" - resolved "https://registry.yarnpkg.com/text-hex/-/text-hex-1.0.0.tgz#69dc9c1b17446ee79a92bf5b884bb4b9127506f5" + resolved "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz" integrity sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg== text-table@^0.2.0: @@ -15382,6 +15984,11 @@ text-table@^0.2.0: resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== +thingies@^2.5.0: + version "2.6.0" + resolved "https://registry.npmjs.org/thingies/-/thingies-2.6.0.tgz" + integrity sha512-rMHRjmlFLM1R96UYPvpmnc3LYtdFrT33JIB7L9hetGue1qAPfn1N2LJeEjxUSidu1Iku+haLZXDuEXUHNGO/lg== + throat@^6.0.1: version "6.0.2" resolved "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz" @@ -15402,18 +16009,23 @@ tiny-warning@^1.0.0: resolved "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz" integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== -tinyexec@^0.3.0: - version "0.3.1" - resolved "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz" - integrity sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ== +tinyexec@^1.0.1: + version "1.1.2" + resolved "https://registry.npmjs.org/tinyexec/-/tinyexec-1.1.2.tgz" + integrity sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA== tinyglobby@^0.2.13: - version "0.2.13" - resolved "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.13.tgz" - integrity sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw== + version "0.2.16" + resolved "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz" + integrity sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg== dependencies: - fdir "^6.4.4" - picomatch "^4.0.2" + fdir "^6.5.0" + picomatch "^4.0.4" + +tinypool@^1.0.2: + version "1.1.1" + resolved "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz" + integrity sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg== tmpl@1.0.5: version "1.0.5" @@ -15432,7 +16044,7 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -toidentifier@1.0.1: +toidentifier@1.0.1, toidentifier@~1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== @@ -15461,9 +16073,14 @@ tr46@^2.1.0: tr46@~0.0.3: version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== +tree-dump@^1.0.3, tree-dump@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/tree-dump/-/tree-dump-1.1.0.tgz" + integrity sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA== + tree-kill@^1.2.2: version "1.2.2" resolved "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz" @@ -15486,7 +16103,7 @@ trim@0.0.1: triple-beam@^1.3.0: version "1.4.1" - resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.4.1.tgz#6fde70271dc6e5d73ca0c3b24e2d92afb7441984" + resolved "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz" integrity sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg== trough@^1.0.0: @@ -15551,14 +16168,26 @@ tsconfig-paths@^3.14.1: minimist "^1.2.6" strip-bom "^3.0.0" -tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0, tslib@^2.6.0: - version "2.8.0" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.8.0.tgz" - integrity sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA== +tslib@^1.9.3: + version "1.14.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0, tslib@^2.6.0, tslib@^2.8.1: + version "2.8.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== + +tsyringe@^4.10.0: + version "4.10.0" + resolved "https://registry.npmjs.org/tsyringe/-/tsyringe-4.10.0.tgz" + integrity sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw== + dependencies: + tslib "^1.9.3" turndown@^7.1.1: version "7.2.4" - resolved "https://registry.yarnpkg.com/turndown/-/turndown-7.2.4.tgz#42d98202aefa8c188c997b586bc6da78bdf27ea2" + resolved "https://registry.npmjs.org/turndown/-/turndown-7.2.4.tgz" integrity sha512-I8yFsfRzmzK0WV1pNNOA4A7y4RDfFxPRxb3t+e3ui14qSGOxGtiSP6GjeX+Y6CHb7HYaFj7ECUD7VE5kQMZWGQ== dependencies: "@mixmark-io/domino" "^2.2.0" @@ -15596,49 +16225,50 @@ type-is@~1.6.18: media-typer "0.3.0" mime-types "~2.1.24" -typed-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz" - integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== +typed-array-buffer@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz" + integrity sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw== dependencies: - call-bind "^1.0.7" + call-bound "^1.0.3" es-errors "^1.3.0" - is-typed-array "^1.1.13" + is-typed-array "^1.1.14" -typed-array-byte-length@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz" - integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== +typed-array-byte-length@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz" + integrity sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg== dependencies: - call-bind "^1.0.7" + call-bind "^1.0.8" for-each "^0.3.3" - gopd "^1.0.1" - has-proto "^1.0.3" - is-typed-array "^1.1.13" + gopd "^1.2.0" + has-proto "^1.2.0" + is-typed-array "^1.1.14" -typed-array-byte-offset@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz" - integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== +typed-array-byte-offset@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz" + integrity sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ== dependencies: available-typed-arrays "^1.0.7" - call-bind "^1.0.7" + call-bind "^1.0.8" for-each "^0.3.3" - gopd "^1.0.1" - has-proto "^1.0.3" - is-typed-array "^1.1.13" + gopd "^1.2.0" + has-proto "^1.2.0" + is-typed-array "^1.1.15" + reflect.getprototypeof "^1.0.9" -typed-array-length@^1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz" - integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== +typed-array-length@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz" + integrity sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg== dependencies: call-bind "^1.0.7" for-each "^0.3.3" gopd "^1.0.1" - has-proto "^1.0.3" is-typed-array "^1.1.13" possible-typed-array-names "^1.0.0" + reflect.getprototypeof "^1.0.6" typedarray-to-buffer@^3.1.5: version "3.1.5" @@ -15647,39 +16277,34 @@ typedarray-to-buffer@^3.1.5: dependencies: is-typedarray "^1.0.0" -typescript@^5.2.2: - version "5.6.3" - resolved "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz" - integrity sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw== - -ufo@^1.5.4: - version "1.5.4" - resolved "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz" - integrity sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ== +typescript@^6.0.0: + version "6.0.3" + resolved "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz" + integrity sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw== -unbox-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz" - integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== +unbox-primitive@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz" + integrity sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw== dependencies: - call-bind "^1.0.2" + call-bound "^1.0.3" has-bigints "^1.0.2" - has-symbols "^1.0.3" - which-boxed-primitive "^1.0.2" + has-symbols "^1.1.0" + which-boxed-primitive "^1.1.1" -undici-types@~6.19.8: - version "6.19.8" - resolved "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz" - integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== +"undici-types@>=7.24.0 <7.24.7": + version "7.24.6" + resolved "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz" + integrity sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg== undici-types@~7.19.0: version "7.19.2" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.19.2.tgz#1b67fc26d0f157a0cba3a58a5b5c1e2276b8ba2a" + resolved "https://registry.npmjs.org/undici-types/-/undici-types-7.19.2.tgz" integrity sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg== unescape@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/unescape/-/unescape-1.0.1.tgz#956e430f61cad8a4d57d82c518f5e6cc5d0dda96" + resolved "https://registry.npmjs.org/unescape/-/unescape-1.0.1.tgz" integrity sha512-O0+af1Gs50lyH1nUu3ZyYS1cRh01Q/kUKatTOkSs7jukXE6/NebucDVxyiDsA9AQ4JC1V1jUH9EO8JX2nMDgGQ== dependencies: extend-shallow "^2.0.1" @@ -15710,15 +16335,15 @@ unicode-match-property-ecmascript@^2.0.0: unicode-canonical-property-names-ecmascript "^2.0.0" unicode-property-aliases-ecmascript "^2.0.0" -unicode-match-property-value-ecmascript@^2.1.0: - version "2.2.0" - resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz" - integrity sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg== +unicode-match-property-value-ecmascript@^2.2.1: + version "2.2.1" + resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz" + integrity sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg== unicode-property-aliases-ecmascript@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz" - integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + version "2.2.0" + resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz" + integrity sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ== unified@9.2.0: version "9.2.0" @@ -15758,7 +16383,7 @@ unified@^8.4.2: unified@^9.1.0: version "9.2.2" - resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.2.tgz#67649a1abfc3ab85d2969502902775eb03146975" + resolved "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz" integrity sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ== dependencies: bail "^1.0.0" @@ -15798,9 +16423,9 @@ unist-util-is@^4.0.0: integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== unist-util-is@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz" - integrity sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw== + version "6.0.1" + resolved "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz" + integrity sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g== dependencies: "@types/unist" "^3.0.0" @@ -15860,9 +16485,9 @@ unist-util-visit-parents@^3.0.0: unist-util-is "^4.0.0" unist-util-visit-parents@^6.0.0: - version "6.0.1" - resolved "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz" - integrity sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw== + version "6.0.2" + resolved "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz" + integrity sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ== dependencies: "@types/unist" "^3.0.0" unist-util-is "^6.0.0" @@ -15877,9 +16502,9 @@ unist-util-visit@2.0.3, unist-util-visit@^2.0.0, unist-util-visit@^2.0.1, unist- unist-util-visit-parents "^3.0.0" unist-util-visit@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz" - integrity sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg== + version "5.1.0" + resolved "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz" + integrity sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg== dependencies: "@types/unist" "^3.0.0" unist-util-is "^6.0.0" @@ -15887,7 +16512,7 @@ unist-util-visit@^5.0.0: universal-github-app-jwt@^1.0.1: version "1.2.0" - resolved "https://registry.yarnpkg.com/universal-github-app-jwt/-/universal-github-app-jwt-1.2.0.tgz#1314cf2b2aff69d7ae998e8bff90d55a651d2949" + resolved "https://registry.npmjs.org/universal-github-app-jwt/-/universal-github-app-jwt-1.2.0.tgz" integrity sha512-dncpMpnsKBk0eetwfN8D8OUHGfiDhhJ+mtsbMl+7PfW7mYjiH8LIcqRmYMtzYLgSh47HjfdBtrBwIQ/gizKR3g== dependencies: "@types/jsonwebtoken" "^9.0.0" @@ -15895,7 +16520,7 @@ universal-github-app-jwt@^1.0.1: universal-user-agent@^6.0.0: version "6.0.1" - resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.1.tgz#15f20f55da3c930c57bddbf1734c6654d5fd35aa" + resolved "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz" integrity sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ== universalify@^0.2.0: @@ -15908,7 +16533,7 @@ universalify@^2.0.0: resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== -unpipe@1.0.0, unpipe@~1.0.0: +unpipe@~1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== @@ -15920,16 +16545,16 @@ unquote@~1.1.1: unxhr@~1.2: version "1.2.0" - resolved "https://registry.yarnpkg.com/unxhr/-/unxhr-1.2.0.tgz#44d391cb882c268a2909cd258a9a4f1941a6cf57" + resolved "https://registry.npmjs.org/unxhr/-/unxhr-1.2.0.tgz" integrity sha512-6cGpm8NFXPD9QbSNx0cD2giy7teZ6xOkCUH3U89WKVkL9N9rBrWjlCwhR94Re18ZlAop4MOc3WU1M3Hv/bgpIw== -update-browserslist-db@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz" - integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A== +update-browserslist-db@^1.2.3: + version "1.2.3" + resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz" + integrity sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w== dependencies: escalade "^3.2.0" - picocolors "^1.1.0" + picocolors "^1.1.1" update-notifier@^5.1.0: version "5.1.0" @@ -16004,16 +16629,16 @@ url-parse@^1.5.3: url@0.10.3: version "0.10.3" - resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64" + resolved "https://registry.npmjs.org/url/-/url-0.10.3.tgz" integrity sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ== dependencies: punycode "1.3.2" querystring "0.2.0" -use-isomorphic-layout-effect@^1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz" - integrity sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA== +use-isomorphic-layout-effect@^1.2.0: + version "1.2.1" + resolved "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.2.1.tgz" + integrity sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA== util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" @@ -16039,7 +16664,7 @@ util@^0.10.3: util@^0.12.4: version "0.12.5" - resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" + resolved "https://registry.npmjs.org/util/-/util-0.12.5.tgz" integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== dependencies: inherits "^2.0.3" @@ -16065,19 +16690,19 @@ utils-merge@1.0.1: uuid@8.0.0: version "8.0.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.0.0.tgz#bc6ccf91b5ff0ac07bbcdbf1c7c4e150db4dbb6c" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz" integrity sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw== +"uuid@^11.1.0 || ^12 || ^13 || ^14.0.0": + version "14.0.0" + resolved "https://registry.npmjs.org/uuid/-/uuid-14.0.0.tgz" + integrity sha512-Qo+uWgilfSmAhXCMav1uYFynlQO7fMFiMVZsQqZRMIXp0O7rR7qjkj+cPvBHLgBqi960QCoo/PH2/6ZtVqKvrg== + uuid@^8.3.2: version "8.3.2" resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== -uuid@^9.0.1: - version "9.0.1" - resolved "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz" - integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== - v8-compile-cache-lib@^3.0.1: version "3.0.1" resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz" @@ -16124,9 +16749,9 @@ vfile-message@^2.0.0: unist-util-stringify-position "^2.0.0" vfile-message@^4.0.0: - version "4.0.2" - resolved "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz" - integrity sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw== + version "4.0.3" + resolved "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz" + integrity sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw== dependencies: "@types/unist" "^3.0.0" unist-util-stringify-position "^4.0.0" @@ -16149,46 +16774,16 @@ vfile@^6.0.0, vfile@^6.0.1: "@types/unist" "^3.0.0" vfile-message "^4.0.0" -vscode-jsonrpc@8.2.0: - version "8.2.0" - resolved "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz" - integrity sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA== - -vscode-languageserver-protocol@3.17.5: - version "3.17.5" - resolved "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz" - integrity sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg== - dependencies: - vscode-jsonrpc "8.2.0" - vscode-languageserver-types "3.17.5" - -vscode-languageserver-textdocument@^1.0.12, vscode-languageserver-textdocument@~1.0.11: +vscode-languageserver-textdocument@^1.0.12: version "1.0.12" resolved "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz" integrity sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA== -vscode-languageserver-types@3.17.5: - version "3.17.5" - resolved "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz" - integrity sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg== - -vscode-languageserver@~9.0.1: - version "9.0.1" - resolved "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz" - integrity sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g== - dependencies: - vscode-languageserver-protocol "3.17.5" - vscode-uri@^3.1.0: version "3.1.0" resolved "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz" integrity sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ== -vscode-uri@~3.0.8: - version "3.0.8" - resolved "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz" - integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw== - w3c-hr-time@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz" @@ -16228,22 +16823,14 @@ warning@^4.0.3: dependencies: loose-envify "^1.0.0" -watchpack@^2.0.0-beta.10: +watchpack@^2.0.0-beta.10, watchpack@^2.5.1: version "2.5.1" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.5.1.tgz#dd38b601f669e0cbf567cb802e75cead82cde102" + resolved "https://registry.npmjs.org/watchpack/-/watchpack-2.5.1.tgz" integrity sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg== dependencies: glob-to-regexp "^0.4.1" graceful-fs "^4.1.2" -watchpack@^2.4.1: - version "2.4.2" - resolved "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz" - integrity sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw== - dependencies: - glob-to-regexp "^0.4.1" - graceful-fs "^4.1.2" - wbuf@^1.1.0, wbuf@^1.7.3: version "1.7.3" resolved "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz" @@ -16263,7 +16850,7 @@ web-namespaces@^2.0.0: webidl-conversions@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== webidl-conversions@^5.0.0: @@ -16324,7 +16911,19 @@ webpack-dev-middleware@^5.3.4: range-parser "^1.2.1" schema-utils "^4.0.0" -webpack-dev-server@^4.15.2, webpack-dev-server@^4.9.0: +webpack-dev-middleware@^7.4.2: + version "7.4.5" + resolved "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.4.5.tgz" + integrity sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA== + dependencies: + colorette "^2.0.10" + memfs "^4.43.1" + mime-types "^3.0.1" + on-finished "^2.4.1" + range-parser "^1.2.1" + schema-utils "^4.0.0" + +webpack-dev-server@^4.9.0: version "4.15.2" resolved "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz" integrity sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g== @@ -16360,6 +16959,40 @@ webpack-dev-server@^4.15.2, webpack-dev-server@^4.9.0: webpack-dev-middleware "^5.3.4" ws "^8.13.0" +webpack-dev-server@^5.2.2: + version "5.2.4" + resolved "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.2.4.tgz" + integrity sha512-GqDPGZN9bRqKBTkp4aWkobDDHMsrXKoGSdOH56smIri8qR0JG8gfL8/v/f/OZR3/OKXjG8uwJbFVhKm/FNU/UA== + dependencies: + "@types/bonjour" "^3.5.13" + "@types/connect-history-api-fallback" "^1.5.4" + "@types/express" "^4.17.25" + "@types/express-serve-static-core" "^4.17.21" + "@types/serve-index" "^1.9.4" + "@types/serve-static" "^1.15.5" + "@types/sockjs" "^0.3.36" + "@types/ws" "^8.5.10" + ansi-html-community "^0.0.8" + bonjour-service "^1.2.1" + chokidar "^3.6.0" + colorette "^2.0.10" + compression "^1.8.1" + connect-history-api-fallback "^2.0.0" + express "^4.22.1" + graceful-fs "^4.2.6" + http-proxy-middleware "^2.0.9" + ipaddr.js "^2.1.0" + launch-editor "^2.6.1" + open "^10.0.3" + p-retry "^6.2.0" + schema-utils "^4.2.0" + selfsigned "^5.5.0" + serve-index "^1.9.1" + sockjs "^0.3.24" + spdy "^4.0.2" + webpack-dev-middleware "^7.4.2" + ws "^8.18.0" + webpack-merge@^5.7.3, webpack-merge@^5.8.0, webpack-merge@^5.9.0: version "5.10.0" resolved "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz" @@ -16378,39 +17011,40 @@ webpack-merge@^6.0.1: flat "^5.0.2" wildcard "^2.0.1" -webpack-sources@^3.2.2, webpack-sources@^3.2.3: - version "3.2.3" - resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz" - integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== +webpack-sources@^3.2.2, webpack-sources@^3.3.4: + version "3.4.1" + resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.4.1.tgz" + integrity sha512-eACpxRN02yaawnt+uUNIF7Qje6A9zArxBbcAJjK1PK3S9Ycg5jIuJ8pW4q8EMnwNZCEGltcjkRx1QzOxOkKD8A== webpack@^5.72.1, webpack@^5.88.1, webpack@^5.95.0: - version "5.96.1" - resolved "https://registry.npmjs.org/webpack/-/webpack-5.96.1.tgz" - integrity sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA== + version "5.106.2" + resolved "https://registry.npmjs.org/webpack/-/webpack-5.106.2.tgz" + integrity sha512-wGN3qcrBQIFmQ/c0AiOAQBvrZ5lmY8vbbMv4Mxfgzqd/B6+9pXtLo73WuS1dSGXM5QYY3hZnIbvx+K1xxe6FyA== dependencies: "@types/eslint-scope" "^3.7.7" - "@types/estree" "^1.0.6" - "@webassemblyjs/ast" "^1.12.1" - "@webassemblyjs/wasm-edit" "^1.12.1" - "@webassemblyjs/wasm-parser" "^1.12.1" - acorn "^8.14.0" - browserslist "^4.24.0" + "@types/estree" "^1.0.8" + "@types/json-schema" "^7.0.15" + "@webassemblyjs/ast" "^1.14.1" + "@webassemblyjs/wasm-edit" "^1.14.1" + "@webassemblyjs/wasm-parser" "^1.14.1" + acorn "^8.16.0" + acorn-import-phases "^1.0.3" + browserslist "^4.28.1" chrome-trace-event "^1.0.2" - enhanced-resolve "^5.17.1" - es-module-lexer "^1.2.1" + enhanced-resolve "^5.20.0" + es-module-lexer "^2.0.0" eslint-scope "5.1.1" events "^3.2.0" glob-to-regexp "^0.4.1" graceful-fs "^4.2.11" - json-parse-even-better-errors "^2.3.1" - loader-runner "^4.2.0" - mime-types "^2.1.27" + loader-runner "^4.3.1" + mime-db "^1.54.0" neo-async "^2.6.2" - schema-utils "^3.2.0" - tapable "^2.1.1" - terser-webpack-plugin "^5.3.10" - watchpack "^2.4.1" - webpack-sources "^3.2.3" + schema-utils "^4.3.3" + tapable "^2.3.0" + terser-webpack-plugin "^5.3.17" + watchpack "^2.5.1" + webpack-sources "^3.3.4" webpackbar@^5.0.2: version "5.0.2" @@ -16422,19 +17056,15 @@ webpackbar@^5.0.2: pretty-time "^1.1.0" std-env "^3.0.1" -webpackbar@^6.0.1: - version "6.0.1" - resolved "https://registry.npmjs.org/webpackbar/-/webpackbar-6.0.1.tgz" - integrity sha512-TnErZpmuKdwWBdMoexjio3KKX6ZtoKHRVvLIU0A47R0VVBDtx3ZyOJDktgYixhoJokZTYTt1Z37OkO9pnGJa9Q== +webpackbar@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/webpackbar/-/webpackbar-7.0.0.tgz" + integrity sha512-aS9soqSO2iCHgqHoCrj4LbfGQUboDCYJPSFOAchEK+9psIjNrfSWW4Y0YEz67MKURNvMmfo0ycOg9d/+OOf9/Q== dependencies: - ansi-escapes "^4.3.2" - chalk "^4.1.2" + ansis "^3.2.0" consola "^3.2.3" - figures "^3.2.0" - markdown-table "^2.0.0" pretty-time "^1.1.0" std-env "^3.7.0" - wrap-ansi "^7.0.0" websocket-driver@>=0.5.1, websocket-driver@^0.7.4: version "0.7.4" @@ -16464,7 +17094,7 @@ whatwg-mimetype@^2.3.0: whatwg-url@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== dependencies: tr46 "~0.0.3" @@ -16479,31 +17109,49 @@ whatwg-url@^8.0.0, whatwg-url@^8.5.0: tr46 "^2.1.0" webidl-conversions "^6.1.0" -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== +which-boxed-primitive@^1.1.0, which-boxed-primitive@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz" + integrity sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA== dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" + is-bigint "^1.1.0" + is-boolean-object "^1.2.1" + is-number-object "^1.1.1" + is-string "^1.1.1" + is-symbol "^1.1.1" -which-typed-array@^1.1.14, which-typed-array@^1.1.15: - version "1.1.15" - resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz" - integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== +which-builtin-type@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz" + integrity sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q== dependencies: - available-typed-arrays "^1.0.7" - call-bind "^1.0.7" - for-each "^0.3.3" - gopd "^1.0.1" + call-bound "^1.0.2" + function.prototype.name "^1.1.6" has-tostringtag "^1.0.2" + is-async-function "^2.0.0" + is-date-object "^1.1.0" + is-finalizationregistry "^1.1.0" + is-generator-function "^1.0.10" + is-regex "^1.2.1" + is-weakref "^1.0.2" + isarray "^2.0.5" + which-boxed-primitive "^1.1.0" + which-collection "^1.0.2" + which-typed-array "^1.1.16" -which-typed-array@^1.1.16, which-typed-array@^1.1.2: +which-collection@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz" + integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== + dependencies: + is-map "^2.0.3" + is-set "^2.0.3" + is-weakmap "^2.0.2" + is-weakset "^2.0.3" + +which-typed-array@^1.1.16, which-typed-array@^1.1.19, which-typed-array@^1.1.2: version "1.1.20" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.20.tgz#3fdb7adfafe0ea69157b1509f3a1cd892bd1d122" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz" integrity sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg== dependencies: available-typed-arrays "^1.0.7" @@ -16549,7 +17197,7 @@ wildcard@^2.0.0, wildcard@^2.0.1: winston-transport@^4.9.0: version "4.9.0" - resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.9.0.tgz#3bba345de10297654ea6f33519424560003b3bf9" + resolved "https://registry.npmjs.org/winston-transport/-/winston-transport-4.9.0.tgz" integrity sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A== dependencies: logform "^2.7.0" @@ -16558,7 +17206,7 @@ winston-transport@^4.9.0: winston@^3.3.3: version "3.19.0" - resolved "https://registry.yarnpkg.com/winston/-/winston-3.19.0.tgz#cc1d1262f5f45946904085cfffe73efb4b7a581d" + resolved "https://registry.npmjs.org/winston/-/winston-3.19.0.tgz" integrity sha512-LZNJgPzfKR+/J3cHkxcpHKpKKvGfDZVPS4hfJCc4cCG0CgYzvlD6yE/S3CIL/Yt91ak327YCpiF/0MyeZHEHKA== dependencies: "@colors/colors" "^1.6.0" @@ -16611,10 +17259,17 @@ ws@^7.3.1, ws@^7.4.6: resolved "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz" integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ== -ws@^8.13.0: - version "8.18.0" - resolved "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz" - integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== +ws@^8.13.0, ws@^8.18.0: + version "8.20.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.20.1.tgz" + integrity sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w== + +wsl-utils@^0.1.0: + version "0.1.0" + resolved "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.1.0.tgz" + integrity sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw== + dependencies: + is-wsl "^3.1.0" xdg-basedir@^4.0.0: version "4.0.0" @@ -16640,7 +17295,7 @@ xml-name-validator@^3.0.0: xml2js@0.6.2: version "0.6.2" - resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.6.2.tgz#dd0b630083aa09c161e25a4d0901e2b2a929b499" + resolved "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz" integrity sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA== dependencies: sax ">=0.6.0" @@ -16648,7 +17303,7 @@ xml2js@0.6.2: xmlbuilder@~11.0.0: version "11.0.1" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" + resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz" integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== xmlchars@^2.2.0: @@ -16673,13 +17328,13 @@ yallist@^3.0.2: yallist@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2: - version "1.10.2" - resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" - integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + version "1.10.3" + resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.3.tgz" + integrity sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA== yaml@^2.7.1: version "2.7.1" @@ -16733,9 +17388,9 @@ yocto-queue@^0.1.0: integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== yocto-queue@^1.0.0: - version "1.1.1" - resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz" - integrity sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g== + version "1.2.2" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz" + integrity sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ== zwitch@^1.0.0: version "1.0.5"