csnx
csnx copied to clipboard
build(deps-dev): bump the devdependencies group across 1 directory with 5 updates
Bumps the devdependencies group with 5 updates in the / directory:
Package | From | To |
---|---|---|
@astrojs/check | 0.8.3 |
0.9.2 |
astro | 4.12.2 |
4.14.2 |
@playwright/test | 1.45.3 |
1.46.0 |
tsx | 4.16.2 |
4.17.0 |
lightningcss | 1.25.1 |
1.26.0 |
Updates @astrojs/check
from 0.8.3 to 0.9.2
Release notes
Sourced from @astrojs/check
's releases.
@astrojs/check
@0
.9.2Patch Changes
- e8e18a8: Fixes an issue where errors inside script and style tags could be offset by a few characters when multi bytes characters were present in the file
- Updated dependencies [e8e18a8]
@astrojs/language-server
@2
.13.2
@astrojs/check
@0
.9.1Patch Changes
- cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases
- Updated dependencies [cc94bef]
@astrojs/language-server
@2
.13.1
@astrojs/check
@0
.9.0Minor Changes
- b65d6b4: Adds support for SCSS and LESS intellisense inside style tags
Patch Changes
- Updated dependencies [3a60f00]
- Updated dependencies [b65d6b4]
@astrojs/language-server
@2
.13.0
Changelog
Sourced from @astrojs/check
's changelog.
0.9.2
Patch Changes
- e8e18a8: Fixes an issue where errors inside script and style tags could be offset by a few characters when multi bytes characters were present in the file
- Updated dependencies [e8e18a8]
@astrojs/language-server
@2
.13.20.9.1
Patch Changes
- cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases
- Updated dependencies [cc94bef]
@astrojs/language-server
@2
.13.10.9.0
Minor Changes
- b65d6b4: Adds support for SCSS and LESS intellisense inside style tags
Patch Changes
- Updated dependencies [3a60f00]
- Updated dependencies [b65d6b4]
@astrojs/language-server
@2
.13.0
Commits
Updates astro
from 4.12.2 to 4.14.2
Release notes
Sourced from astro's releases.
[email protected]
Patch Changes
[email protected]
Patch Changes
#11725
6c1560f
Thanks@ascorbic
! - Prevents content layer importing node builtins in runtime#11692
35af73a
Thanks@matthewp
! - Prevent errant HTML from crashing server islandsWhen an HTML minifier strips away the server island comment, the script can't correctly know where the end of the fallback content is. This makes it so that it simply doesn't remove any DOM in that scenario. This means the fallback isn't removed, but it also doesn't crash the browser.
#11727
3c2f93b
Thanks@florian-lefebvre
! - Fixes a type issue when using the Content Layer in dev[email protected]
Minor Changes
#11657
a23c69d
Thanks@bluwy
! - Deprecates the option for route-generating files to export a dynamic value forprerender
. Only static values are now supported (e.g.export const prerender = true
or= false
). This allows for better treeshaking and bundling configuration in the future.Adds a new
"astro:route:setup"
hook to the Integrations API to allow you to dynamically set options for a route at build or request time through an integration, such as enabling on-demand server rendering.To migrate from a dynamic export to the new hook, update or remove any dynamic
prerender
exports from individual routing files:// src/pages/blog/[slug].astro - export const prerender = import.meta.env.PRERENDER
Instead, create an integration with the
"astro:route:setup"
hook and update the route'sprerender
option:// astro.config.mjs import { defineConfig } from 'astro/config'; import { loadEnv } from 'vite';
export default defineConfig({ integrations: [setPrerender()], });
function setPrerender() { const { PRERENDER } = loadEnv(process.env.NODE_ENV, process.cwd(), '');
return { name: 'set-prerender', hooks: { 'astro:route:setup': ({ route }) => { if (route.component.endsWith('/blog/[slug].astro')) { route.prerender = PRERENDER;
... (truncated)
Changelog
Sourced from astro's changelog.
4.14.2
Patch Changes
4.14.1
Patch Changes
#11725
6c1560f
Thanks@ascorbic
! - Prevents content layer importing node builtins in runtime#11692
35af73a
Thanks@matthewp
! - Prevent errant HTML from crashing server islandsWhen an HTML minifier strips away the server island comment, the script can't correctly know where the end of the fallback content is. This makes it so that it simply doesn't remove any DOM in that scenario. This means the fallback isn't removed, but it also doesn't crash the browser.
#11727
3c2f93b
Thanks@florian-lefebvre
! - Fixes a type issue when using the Content Layer in dev4.14.0
Minor Changes
#11657
a23c69d
Thanks@bluwy
! - Deprecates the option for route-generating files to export a dynamic value forprerender
. Only static values are now supported (e.g.export const prerender = true
or= false
). This allows for better treeshaking and bundling configuration in the future.Adds a new
"astro:route:setup"
hook to the Integrations API to allow you to dynamically set options for a route at build or request time through an integration, such as enabling on-demand server rendering.To migrate from a dynamic export to the new hook, update or remove any dynamic
prerender
exports from individual routing files:// src/pages/blog/[slug].astro - export const prerender = import.meta.env.PRERENDER
Instead, create an integration with the
"astro:route:setup"
hook and update the route'sprerender
option:// astro.config.mjs import { defineConfig } from 'astro/config'; import { loadEnv } from 'vite';
export default defineConfig({ integrations: [setPrerender()], });
function setPrerender() { const { PRERENDER } = loadEnv(process.env.NODE_ENV, process.cwd(), '');
return { name: 'set-prerender', hooks: {
... (truncated)
Commits
0109690
[ci] release (#11734)391324d
Revert parseArgs change (#11733)91d36fa
[ci] release (#11719)87ce238
[ci] format70945dd
refactor: enforce node prefix (#11723)3c2f93b
fix: content types sync in dev (#11727)6c1560f
fix: separate data store into mutable and immutable versions (#11725)4844e1b
chore: updates the supported features of test adapter (#11724)934165e
[ci] format35af73a
Prevent errant HTML from crashing server islands (#11692)- Additional commits viewable in compare view
Updates @playwright/test
from 1.45.3 to 1.46.0
Release notes
Sourced from @playwright/test
's releases.
v1.46.0
TLS Client Certificates
Playwright now allows to supply client-side certificates, so that server can verify them, as specified by TLS Client Authentication.
When client certificates are specified, all browser traffic is routed through a proxy that establishes the secure TLS connection, provides client certificates to the server and validates server certificates.
The following snippet sets up a client certificate for
https://example.com
:import { defineConfig } from '@playwright/test';
export default defineConfig({
// ...
use: {
clientCertificates: [{
origin: 'https://example.com',
certPath: './cert.pem',
keyPath: './key.pem',
passphrase: 'mysecretpassword',
}],
},
// ...
});
You can also provide client certificates to a particular test project or as a parameter of browser.newContext() and apiRequest.newContext().
--only-changed
cli optionNew CLI option
--only-changed
allows to only run test files that have been changed since the last git commit or from a specific git "ref".# Only run test files with uncommitted changes npx playwright test --only-changed
Only run test files changed relative to the "main" branch
npx playwright test --only-changed=main
Component Testing: New
router
fixtureThis release introduces an experimental
router
fixture to intercept and handle network requests in component testing. There are two ways to use the router fixture:
- Call
router.route(url, handler)
that behaves similarly to page.route().- Call
router.use(handlers)
and pass MSW library request handlers to it.Here is an example of reusing your existing MSW handlers in the test.
</tr></table>
... (truncated)
Commits
99a3631
chore: mark v1.46 (#32013)929fef3
cherry-pick(#32012): chore(lint): bump Microsoft.CodeAnalysis for linting cod...cf31aa8
cherry-pick(#32008): chore(client-certificates): rewrite error for unsupporte...ed9b4d9
cherry-pick(#32007): fix(client-certificates): report error to the browser if...fca1fa0
cherry-pick(#31973): chore: run client-certificate tests in service modeff11273
cherry-pick(#32010): docs: release notes for 1.46 update4953ac3
cherry-pick(#31975): chore: remove bright counter from sidebar tab se… (#31976)4c66f8a
cherry-pick(#31970): fix(trace): do not place expect into unfinished … (#31974)deba37b
cherry-pick(#31960): feat(ui mode): linkify attachment names and content (#31...2cfe733
cherry-pick(#31961): fix(trace-viewer): make 'hide route actions' work for .NET- Additional commits viewable in compare view
Updates tsx
from 4.16.2 to 4.17.0
Release notes
Sourced from tsx's releases.
v4.17.0
4.17.0 (2024-08-08)
Features
This release is also available on:
v4.16.5
4.16.5 (2024-08-01)
Bug Fixes
- resolver: directory import nested ".." (2fada74)
This release is also available on:
v4.16.4
4.16.4 (2024-08-01)
Bug Fixes
This release is also available on:
v4.16.3
4.16.3 (2024-07-31)
Bug Fixes
... (truncated)
Commits
bd83d3b
feat: upgrade esbuild to 0.23 (#615)2fada74
fix(resolver): directory import nested ".."3cf0b6a
fix(resolver): handle importing ".."ca4bf11
refactor(cjs): resolver organized in multiple files3df00f4
fix(resolver): prioritize requested path in dependencies1c3fd22
docs(usages): update link to knip usage (#622)8344163
chore(deps): update dependency node to v20.16.0 (#621)178f338
chore: remove unusedeslintConfig
(#620)1affdd0
docs: make logos easier to see7d38e42
docs: fix marquee bug on safari- Additional commits viewable in compare view
Updates lightningcss
from 1.25.1 to 1.26.0
Release notes
Sourced from lightningcss's releases.
v1.26.0
Added
- Add support for named timeline ranges in
@keyframes
by@grimsteel
in parcel-bundler/lightningcss#787- Implement animation-range properties – https://github.com/parcel-bundler/lightningcss/commit/39964f1d78d237bb90006d1517e05b15c4b10514
- Add a lint for unsupported CSS Module selector by
@kdy1
in parcel-bundler/lightningcss#784- add wasm file to package exports by
@elevatebart
in parcel-bundler/lightningcss#755- Add support for arm64 Windows – https://github.com/parcel-bundler/lightningcss/commit/0bcd896e81a8a2c5d847f626a37e2cffea79e2a0
Fixed
- Fix codegen of
:is(input:checked)
by@kdy1
in parcel-bundler/lightningcss#783- Bump browserslist-rs 0.16.0 by
@chenjiahan
in parcel-bundler/lightningcss#772- update compat data – https://github.com/parcel-bundler/lightningcss/commit/dcbb9970a2c1fac1305ebbfb9922f2548d8e2e66
Commits
0bcd896
Add arm Windows support262d120
bump freebsdc7fc5a1
v1.26.027b7274
feat: add wasm file to file exports (#755)dcbb997
update compat datae7d1bfd
update ast86ac8f0
Add support for named timeline ranges in@keyframes
(#787)be53018
feat: Add a lint for unsupported CSS Module selector (#784)3e62347
Bump browserslist-rs 0.16.0 (#772)f7c8831
fix: Fix codegen of:is(input:checked)
(#783)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) -
@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) -
@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) -
@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency -
@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions