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

chore(deps): update all non-major dependencies #661

Merged
merged 1 commit into from
Jun 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 14, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular-devkit/build-angular ^18.0.2 -> ^18.0.4 age adoption passing confidence
@angular/cli ~18.0.2 -> ~18.0.4 age adoption passing confidence
@angular/compiler-cli (source) ^18.0.1 -> ^18.0.3 age adoption passing confidence
@angular/core (source) ^18.0.1 -> ^18.0.3 age adoption passing confidence
@astrojs/preact (source) ^3.3.0 -> ^3.4.0 age adoption passing confidence
@astrojs/react (source) ^3.4.0 -> ^3.5.0 age adoption passing confidence
@builder.io/qwik (source) 1.5.5 -> 1.5.7 age adoption passing confidence
@sveltejs/adapter-auto (source) ^3.2.1 -> ^3.2.2 age adoption passing confidence
@sveltejs/kit (source) ^2.5.10 -> ^2.5.11 age adoption passing confidence
@sveltejs/package (source) ^2.3.1 -> ^2.3.2 age adoption passing confidence
@types/node (source) ^20.12.13 -> ^20.14.2 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.11.0 -> 7.13.0 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^7.11.0 -> ^7.13.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.11.0 -> 7.13.0 age adoption passing confidence
@typescript-eslint/parser (source) ^7.11.0 -> ^7.13.0 age adoption passing confidence
@vitejs/plugin-react (source) ^4.3.0 -> ^4.3.1 age adoption passing confidence
@vitejs/plugin-vue (source) ^5.0.4 -> ^5.0.5 age adoption passing confidence
astro (source) ^4.9.2 -> ^4.10.2 age adoption passing confidence
esbuild ^0.21.4 -> ^0.21.5 age adoption passing confidence
eslint-plugin-qwik (source) ^1.5.5 -> ^1.5.7 age adoption passing confidence
lit (source) ^3.1.3 -> ^3.1.4 age adoption passing confidence
next (source) ^14.2.3 -> ^14.2.4 age adoption passing confidence
prettier (source) ^3.2.5 -> ^3.3.2 age adoption passing confidence
prettier-plugin-svelte ^3.2.3 -> ^3.2.4 age adoption passing confidence
svelte (source) ^4.2.17 -> ^4.2.18 age adoption passing confidence
tslib (source) ^2.6.2 -> ^2.6.3 age adoption passing confidence
tsup (source) ^8.0.2 -> ^8.1.0 age adoption passing confidence
vite (source) ^5.2.12 -> ^5.3.0 age adoption passing confidence
vite (source) 5.2.12 -> 5.3.0 age adoption passing confidence
vue-tsc (source) ^2.0.19 -> ^2.0.21 age adoption passing confidence

Release Notes

angular/angular-cli (@​angular-devkit/build-angular)

v18.0.4

Compare Source

@​angular/build
Commit Type Description
791ef809d fix do not reference sourcemaps in web workers and global stylesheet bundles when hidden setting is enabled
20fc6ca05 fix generate module preloads next to script elements in index HTML
3a1bf5c8a fix Initiate PostCSS only once
78c611754 fix issue warning when auto adding @angular/localize/init

v18.0.3

Compare Source

@​angular/cli
Commit Type Description
b709d2a24 fix add schema.json options to parsed command, also when a version is passed to ng add <package>@&#8203;<version>
@​angular/build
Commit Type Description
43a2a7d13 fix avoid escaping rebased Sass URL values
9acb5c7ca fix disable JS transformer persistent cache on web containers
346df4909 fix improve Sass rebaser ident token detection
6526a5f59 fix watch all related files during a Sass error
angular/angular (@​angular/compiler-cli)

v18.0.3

Compare Source

benchpress
Commit Type Description
ebf00aa0659 fix adjust supported browser names for headless chrome (#​56360)
core
Commit Type Description
dbd0fa00f8c fix async EventEmitter should contribute to app stability (#​56308)
625ca3e2b3f fix signals should be tracked when embeddedViewRef.detectChanges is called (#​55719)
localize
Commit Type Description
d6dd3dbdb09 fix add @angular/localize/init as polyfill in angular.json (#​56300)
migrations
Commit Type Description
c07e1b33569 fix resolve error in standalone migration (#​56302)

v18.0.2

Compare Source

core
Commit Type Description
78cf9bfc0e fix Do not migrate HttpClientModule imports on components. (#​56067)
616cdef474 fix don't coerce all producers to consumers on liveness change (#​56140)
2a440e1064 fix Fix shouldPreventDefaultBeforeDispatching bug (#​56188)
290a47d842 fix handle missing withI18nSupport() call for components that use i18n blocks (#​56175)
migrations
Commit Type Description
b70b80ba55 fix do not generate aliased variables with the same name (#​56154)
withastro/astro (@​astrojs/preact)

v3.4.0

Compare Source

Minor Changes
  • #​11144 803dd80 Thanks @​ematipico! - The integration now exposes a function called getContainerRenderer, that can be used inside the Container APIs to load the relative renderer.

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import ReactWrapper from '../src/components/ReactWrapper.astro';
    import { loadRenderers } from 'astro:container';
    import { getContainerRenderer } from '@&#8203;astrojs/react';
    
    test('ReactWrapper with react renderer', async () => {
      const renderers = await loadRenderers([getContainerRenderer()]);
      const container = await AstroContainer.create({
        renderers,
      });
      const result = await container.renderToString(ReactWrapper);
    
      expect(result).toContain('Counter');
      expect(result).toContain('Count: <!-- -->5');
    });
withastro/astro (@​astrojs/react)

v3.5.0

Compare Source

Minor Changes
  • #​11144 803dd80 Thanks @​ematipico! - The integration now exposes a function called getContainerRenderer, that can be used inside the Container APIs to load the relative renderer.

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import ReactWrapper from '../src/components/ReactWrapper.astro';
    import { loadRenderers } from 'astro:container';
    import { getContainerRenderer } from '@&#8203;astrojs/react';
    
    test('ReactWrapper with react renderer', async () => {
      const renderers = await loadRenderers([getContainerRenderer()]);
      const container = await AstroContainer.create({
        renderers,
      });
      const result = await container.renderToString(ReactWrapper);
    
      expect(result).toContain('Counter');
      expect(result).toContain('Count: <!-- -->5');
    });
QwikDev/qwik (@​builder.io/qwik)

v1.5.7

Compare Source

What's Changed

New Contributors

Full Changelog: QwikDev/qwik@v1.5.6...v1.5.7

v1.5.6

Compare Source

What's Changed

Many bugfixes and documentation updates.

We also added an API tech preview: createSignal, useConstant and createComputed$, which should be self-explanatory. Feedback welcome on Discord or in issues. We cannot guarantee the stability of these APIs yet, although they are simple enough that they probably won't need changing.

Commits
New Contributors

Full Changelog: QwikDev/qwik@v1.5.5...v1.5.6

sveltejs/kit (@​sveltejs/adapter-auto)

v3.2.2

Compare Source

Patch Changes
sveltejs/kit (@​sveltejs/kit)

v2.5.11

Compare Source

Patch Changes
  • fix: hrefs that start with config.prerender.origin are now crawled (#​12277)

  • chore: add keywords for discovery in npm search (#​12330)

  • fix: handle whitespace in HTTP Accept header (#​12292)

sveltejs/kit (@​sveltejs/package)

v2.3.2

Compare Source

Patch Changes
  • chore: add keywords for discovery in npm search (#​12330)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.13.0

Compare Source

🚀 Features
  • typescript-estree: require import = require() argument to be a string literal

  • typescript-estree: forbid .body, .async, .generator on declare function

  • eslint-plugin: [no-dynamic-delete] allow all string literals as index

🩹 Fixes
  • ast-spec: function-call-like callee should be Expression not LeftHandSide

Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

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.

@renovate renovate bot enabled auto-merge (squash) June 14, 2024 02:27
Copy link

netlify bot commented Jun 14, 2024

Deploy Preview for unpic-next ready!

Name Link
🔨 Latest commit e5a6dcd
🔍 Latest deploy log https://app.netlify.com/sites/unpic-next/deploys/666baaa3b27acd0008f1c62b
😎 Deploy Preview https://deploy-preview-661--unpic-next.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Jun 14, 2024

Deploy Preview for unpic-angular ready!

Name Link
🔨 Latest commit e5a6dcd
🔍 Latest deploy log https://app.netlify.com/sites/unpic-angular/deploys/666baaa34d80ac0008af2de3
😎 Deploy Preview https://deploy-preview-661--unpic-angular.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Jun 14, 2024

Deploy Preview for unpic-docs ready!

Name Link
🔨 Latest commit e5a6dcd
🔍 Latest deploy log https://app.netlify.com/sites/unpic-docs/deploys/666baaa333487800088d201c
😎 Deploy Preview https://deploy-preview-661.preview.unpic.pics
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 99 (no change from production)
Accessibility: 100 (no change from production)
Best Practices: 92 (no change from production)
SEO: 100 (no change from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot merged commit a535258 into main Jun 14, 2024
23 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch June 14, 2024 02:30
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.

0 participants