Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #2022

Merged
merged 11 commits into from
Oct 24, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 20, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@docusaurus/core 2.4.1 -> 2.4.3 age adoption passing confidence dependencies patch
@docusaurus/module-type-aliases 2.4.1 -> 2.4.3 age adoption passing confidence devDependencies patch
@docusaurus/preset-classic 2.4.1 -> 2.4.3 age adoption passing confidence dependencies patch
@docusaurus/theme-mermaid 2.4.1 -> 2.4.3 age adoption passing confidence dependencies patch
@playwright/test (source) 1.38.0 -> 1.39.0 age adoption passing confidence devDependencies minor
@sveltejs/kit (source) 1.25.0 -> 1.25.2 age adoption passing confidence devDependencies patch
@testing-library/svelte 4.0.3 -> 4.0.4 age adoption passing confidence devDependencies patch
@types/prismjs (source) 1.26.0 -> 1.26.1 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin 6.7.0 -> 6.7.5 age adoption passing confidence devDependencies patch
@typescript-eslint/parser 6.7.0 -> 6.7.5 age adoption passing confidence devDependencies patch
actions/checkout v4.0.0 -> v4.1.0 age adoption passing confidence action minor
argo-cd 1.4.1 -> 1.8.7 age adoption passing confidence minor
aws (source) ~> 5.17.0 -> ~> 5.21.0 age adoption passing confidence required_provider minor
aws-actions/configure-aws-credentials v4.0.0 -> v4.0.1 age adoption passing confidence action patch
big-bang/bigbang 2.10.0 -> 2.12.0 age adoption passing confidence minor
eslint (source) 8.49.0 -> 8.51.0 age adoption passing confidence devDependencies minor
eslint-plugin-svelte (source) 2.33.1 -> 2.34.0 age adoption passing confidence devDependencies minor
flate2 1.0.27 -> 1.0.28 age adoption passing confidence dependencies patch
ghcr.io/stefanprodan/podinfo 6.4.0 -> 6.5.2 age adoption passing confidence minor
github.com/anchore/syft v0.84.1 -> v0.93.0 age adoption passing confidence require minor
github.com/distribution/distribution v2.8.2+incompatible -> v2.8.3+incompatible age adoption passing confidence require patch
github.com/fluxcd/helm-controller/api v0.36.0 -> v0.36.2 age adoption passing confidence require patch
github.com/fluxcd/source-controller/api v1.1.0 -> v1.1.2 age adoption passing confidence require patch
github.com/otiai10/copy v1.12.0 -> v1.14.0 age adoption passing confidence require minor
github.com/prometheus/client_golang v1.16.0 -> v1.17.0 age adoption passing confidence require minor
github.com/sigstore/sigstore/pkg/signature/kms/aws v1.7.2 -> v1.7.4 age adoption passing confidence require patch
github.com/sigstore/sigstore/pkg/signature/kms/azure v1.7.2 -> v1.7.4 age adoption passing confidence require patch
github.com/sigstore/sigstore/pkg/signature/kms/gcp v1.7.2 -> v1.7.4 age adoption passing confidence require patch
github.com/sigstore/sigstore/pkg/signature/kms/hashivault v1.7.2 -> v1.7.4 age adoption passing confidence require patch
github.com/spf13/viper v1.16.0 -> v1.17.0 age adoption passing confidence require minor
github/codeql-action v2.21.7 -> v2.22.3 age adoption passing confidence action minor
golang.org/x/crypto v0.13.0 -> v0.14.0 age adoption passing confidence require minor
golang.org/x/sync v0.3.0 -> v0.4.0 age adoption passing confidence require minor
golang.org/x/term v0.12.0 -> v0.13.0 age adoption passing confidence require minor
helm.sh/helm/v3 v3.12.3 -> v3.13.1 age adoption passing confidence require minor
k3s-io/k3s v1.28.1+k3s1 -> v1.28.2+k3s1 age adoption passing confidence patch
longhorn (source) 1.4.0 -> 1.5.1 age adoption passing confidence minor
material-symbols (source) 0.12.0 -> 0.13.0 age adoption passing confidence dependencies minor
ossf/scorecard-action v2.2.0 -> v2.3.0 age adoption passing confidence action minor
pepr ^0.13.3 -> ^0.14.0 age adoption passing confidence dependencies minor
playwright (source) 1.38.0 -> 1.39.0 age adoption passing confidence devDependencies minor
prism-react-renderer 2.0.6 -> 2.1.0 age adoption passing confidence dependencies minor
registry 2.8.2 -> 2.8.3 age adoption passing confidence patch
sass 1.67.0 -> 1.69.3 age adoption passing confidence devDependencies minor
sha2 0.10.7 -> 0.10.8 age adoption passing confidence dependencies patch
svelte (source) 4.2.0 -> 4.2.1 age adoption passing confidence devDependencies patch
svelte-check 3.5.1 -> 3.5.2 age adoption passing confidence devDependencies patch
vite (source) 4.4.9 -> 4.4.11 age adoption passing confidence devDependencies patch
weaveworks/eksctl v0.157.0 -> v0.162.0 age adoption passing confidence minor
yaml (source) 2.3.2 -> 2.3.3 age adoption passing confidence dependencies patch

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

facebook/docusaurus (@​docusaurus/core)

v2.4.3

Compare Source

🐛 Bug Fix
  • docusaurus-plugin-content-docs
  • docusaurus-theme-classic
  • docusaurus-theme-classic, docusaurus-theme-common
    • #​9130 fix(theme): canonical url should be not change after hydration if url accessed with/without trailing slash (@​ori-shalom)
Committers: 4
microsoft/playwright (@​playwright/test)

v1.39.0

Compare Source

Add custom matchers to your expect

You can extend Playwright assertions by providing custom matchers. These matchers will be available on the expect object.

import { expect as baseExpect } from '@​playwright/test';
export const expect = baseExpect.extend({
  async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
    // ... see documentation for how to write matchers.
  },
});

test('pass', async ({ page }) => {
  await expect(page.getByTestId('cart')).toHaveAmount(5);
});

See the documentation for a full example.

Merge test fixtures

You can now merge test fixtures from multiple files or modules:

import { mergeTests } from '@​playwright/test';
import { test as dbTest } from 'database-test-utils';
import { test as a11yTest } from 'a11y-test-utils';

export const test = mergeTests(dbTest, a11yTest);
import { test } from './fixtures';

test('passes', async ({ database, page, a11y }) => {
  // use database and a11y fixtures.
});

Merge custom expect matchers

You can now merge custom expect matchers from multiple files or modules:

import { mergeTests, mergeExpects } from '@​playwright/test';
import { test as dbTest, expect as dbExpect } from 'database-test-utils';
import { test as a11yTest, expect as a11yExpect } from 'a11y-test-utils';

export const test = mergeTests(dbTest, a11yTest);
export const expect = mergeExpects(dbExpect, a11yExpect);
import { test, expect } from './fixtures';

test('passes', async ({ page, database }) => {
  await expect(database).toHaveDatabaseUser('admin');
  await expect(page).toPassA11yAudit();
});

Hide implementation details: box test steps

You can mark a test.step() as "boxed" so that errors inside it point to the step call site.

async function login(page) {
  await test.step('login', async () => {
    // ...
  }, { box: true });  // Note the "box" option here.
}
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
  ... error details omitted ...

  14 |   await page.goto('https://github.com/login');
> 15 |   await login(page);
     |         ^
  16 | });

See test.step() documentation for a full example.

New APIs

Browser Versions

  • Chromium 119.0.6045.9
  • Mozilla Firefox 118.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 118
  • Microsoft Edge 118

v1.38.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/27071 - expect(value).toMatchSnapshot() deprecation announcement on V1.38
https://github.com/microsoft/playwright/issues/27072 - [BUG] PWT trace viewer fails to load trace and throws TypeErrorhttps://github.com/microsoft/playwright/issues/270733 - [BUG] RangeError: Invalid time valuhttps://github.com/microsoft/playwright/issues/2708787 - [REGRESSION]: npx playwright test --list prints all tests twihttps://github.com/microsoft/playwright/issues/27113113 - [REGRESSION]: No longer able to extend PlaywrightTest.Matchers type for locators and pahttps://github.com/microsoft/playwright/issues/271447144 - [BUG]can not display thttps://github.com/microsoft/playwright/issues/2716327163 - [REGRESSION] Single Quote Wrongly Escaped by Locator When Using Unicodehttps://github.com/microsoft/playwright/issues/27181/27181 - [BUG] evaluate serializing fails at 1.38

Browser Versions
  • Chromium 117.0.5938.62
  • Mozilla Firefox 117.0
  • WebKit 17.0

This version was also tested against the following stable channels:

  • Google Chrome 116
  • Microsoft Edge 116
sveltejs/kit (@​sveltejs/kit)

v1.25.2

Compare Source

Patch Changes
  • fix: correctly update $page.url.hash when navigating history (#​10843)

  • fix: strip virtual module prefix from error messages (#​10776)

  • fix: cancel ongoing navigation when the browser back button is hit to prevent an incorrect page from being rendered (#​10727)

  • fix: only remove Vite manifest when copying files (#​10782)

v1.25.1

Compare Source

Patch Changes
  • fix: correct line numbers in stack trace (#​10769)

  • fix: correctly return 404 when navigating to a missing page and the root layout fetches a prerendered endpoint (#​10565)

  • fix: allow optional param in middle of route (#​10736)

  • chore: update undici (#​10641)

testing-library/svelte-testing-library (@​testing-library/svelte)

v4.0.4

Compare Source

Bug Fixes
  • add missing supported Svelte options to SvelteComponentOptions #​212 (3379545)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v6.7.5

Compare Source

Bug Fixes
  • eslint-plugin: [prefer-string-starts-ends-with] only report slice/substring with correct range (#​7712) (db40a0a)

You can read about our versioning strategy and releases on our website.

v6.7.4

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

You can read about our versioning strategy and releases on our website.

v6.7.3

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

You can read about our versioning strategy and releases on our website.

v6.7.2

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v6.7.5

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

You can read about our versioning strategy and releases on our website.

v6.7.4

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

You can read about our versioning strategy and releases on our website.

v6.7.3

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

You can read about our versioning strategy and releases on our website.

v6.7.2

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

You can read about our versioning strategy and releases on our website.

actions/checkout (actions/checkout)

v4.1.0

Compare Source

hashicorp/terraform-provider-aws (aws)

v5.21.0

Compare Source

FEATURES:

  • New Data Source: aws_servicequotas_templates (#​33871)
  • New Resource: aws_ec2_image_block_public_access (#​33810)
  • New Resource: aws_guardduty_organization_configuration_feature (#​33913)
  • New Resource: aws_servicequotas_template_association (#​33725)
  • New Resource: aws_verifiedaccess_group (#​33297)
  • New Resource: aws_verifiedaccess_instance_logging_configuration (#​33864)

ENHANCEMENTS:

  • data-source/aws_dms_endpoint: Add s3_settings.glue_catalog_generation attribute (#​33778)
  • data-source/aws_msk_cluster: Add cluster_uuid attribute (#​33805)
  • resource/aws_codedeploy_deployment_group: Add outdated_instances_strategy argument (#​33844)
  • resource/aws_dms_endpoint: Add s3_settings.glue_catalog_generation attribute (#​33778)
  • resource/aws_dms_s3_endpoint: Add glue_catalog_generation attribute (#​33778)
  • resource/aws_docdb_cluster: Add allow_major_version_upgrade argument (#​33790)
  • resource/aws_docdb_cluster_instance: Add copy_tags_to_snapshot argument (#​31022)
  • resource/aws_dynamodb_table: Add import_table configuration block (#​33802)
  • resource/aws_msk_cluster: Add cluster_uuid attribute (#​33805)
  • resource/aws_msk_serverless_cluster: Add cluster_uuid attribute (#​33805)
  • resource/aws_networkmanager_core_network: Add base_policy_document argument (#​33712)
  • resource/aws_redshiftserverless_workgroup: Allow require_ssl and use_fips_ssl config_parameters keys (#​33916)
  • resource/aws_s3_bucket: Use configurable timeout for resource Delete (#​33845)
  • resource/aws_verifiedaccess_instance: Add fips_enabled argument (#​33880)
  • resource/aws_vpclattice_target_group: Add config.lambda_event_structure_version argument (#​33804)
  • resource/aws_vpclattice_target_group: Make config.port, config.protocol and config.vpc_identifier optional (#​33804)
  • resource/aws_wafv2_web_acl: Add aws_managed_rules_acfp_rule_set to managed_rule_group_configs configuration block (#​33915)

BUG FIXES:

  • provider: Respect valid values for the AWS_S3_US_EAST_1_REGIONAL_ENDPOINT environment variable when configuring the S3 API client ([#​3

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@netlify
Copy link

netlify bot commented Sep 20, 2023

Deploy Preview for zarf-docs canceled.

Name Link
🔨 Latest commit db48449
🔍 Latest deploy log https://app.netlify.com/sites/zarf-docs/deploys/65380cecc5fb770008c10a61

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 22 times, most recently from 5d911b8 to fbe022c Compare September 27, 2023 16:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1e60679 to d09692a Compare September 29, 2023 01:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 92bf298 to eedcc50 Compare October 14, 2023 09:46
@Racer159 Racer159 requested review from Madeline-UX and a team as code owners October 16, 2023 16:53
@renovate
Copy link
Contributor Author

renovate bot commented Oct 16, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

Copy link
Contributor

@Noxsios Noxsios left a comment

Choose a reason for hiding this comment

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

overall lgtm, would it be worth making a checkout action so that the update happens only in 1 file?

@Racer159
Copy link
Contributor

overall lgtm, would it be worth making a checkout action so that the update happens only in 1 file?

Unfortunately that isn't possible since you have to checkout the repo in order to reference those common actions.

@Racer159 Racer159 merged commit 9619449 into main Oct 24, 2023
27 checks passed
@Racer159 Racer159 deleted the renovate/all-minor-patch branch October 24, 2023 21:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants