-
Notifications
You must be signed in to change notification settings - Fork 1
[Snyk] Upgrade sass from 1.60.0 to 1.93.2 #8162
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
Conversation
Snyk has created this PR to upgrade sass from 1.60.0 to 1.93.2. See this package in yarn: sass See this project in Snyk: https://app.snyk.io/org/q1bluequantumblockchainlabs.onmicrosoft.com/project/4590850b-6aaf-4257-983f-c8d6bc88021a?utm_source=github&utm_medium=referral&page=upgrade-pr
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
|
🔒 Entelligence AI Vulnerability Scanner ✅ No security vulnerabilities found! Your code passed our comprehensive security analysis. |
WalkthroughThis PR updates the Sass dependency in the microsite package from version 1.57.1 to 1.94.0, representing a significant minor version upgrade. The update brings architectural improvements to Sass's file watching mechanism, transitioning from chokidar v3 to v4 and introducing @parcel/watcher v2.5.1 as an optional dependency. The new version includes platform-specific native bindings for 13 different OS/architecture combinations (Android, Darwin, FreeBSD, Linux with glibc/musl, and Windows variants), enabling optimized file watching across diverse environments. Additional dependencies like detect-libc, node-addon-api v7, and readdirp v4 are added to support enhanced file watching capabilities. The immutable dependency is also upgraded from v4 to v5. Changes
Sequence DiagramThis diagram shows the interactions between components: sequenceDiagram
participant Build as Microsite Build
participant Sass as Sass Compiler (v1.93.2)
participant Parcel as @parcel/watcher (v2.5.1)
participant Chokidar as Chokidar (v4.0.3)
participant Platform as Platform-Specific Watcher
participant FS as File System
Build->>Sass: Initialize sass compiler
Sass->>Sass: Check dependencies
alt @parcel/watcher available
Sass->>Parcel: Initialize file watcher
Parcel->>Platform: Detect OS/CPU/libc
Note over Platform: Selects appropriate binary:<br/>darwin-arm64, linux-x64-glibc,<br/>win32-x64, etc.
Platform->>Parcel: Return platform watcher
Parcel->>FS: Watch SCSS files
else @parcel/watcher not available
Sass->>Chokidar: Initialize file watcher (v4)
Chokidar->>FS: Watch SCSS files
end
loop File watching active
FS-->>Parcel: File change detected
Parcel-->>Sass: Notify file change
Sass->>Sass: Recompile SCSS to CSS
Sass-->>Build: Return compiled CSS
end
Note over Sass,Parcel: New dependencies:<br/>- immutable v5.1.4<br/>- node-addon-api v7.0.0<br/>- detect-libc v1.0.3
Note for WindsurfPlease change the default marketplace provider to the following in the windsurf settings:Marketplace Extension Gallery Service URL: https://marketplace.visualstudio.com/_apis/public/gallery Marketplace Gallery Item URL: https://marketplace.visualstudio.com/items Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts belowEmoji Descriptions:
Interact with the Bot:
Also you can trigger various commands with the bot by doing The current supported commands are
More commands to be added soon. |
|
This PR has been automatically marked as stale because it has not had recent activity from the author. It will be closed if no further activity occurs. If the PR was closed and you want it re-opened, let us know and we'll re-open the PR so that you can continue the contribution! |
Snyk has created this PR to upgrade sass from 1.60.0 to 1.93.2.
ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
The recommended version is 86 versions ahead of your current version.
The recommended version was released 2 months ago.
Important
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.
For more information:
EntelligenceAI PR Summary
Updates Sass dependency in microsite from version 1.57.1 to 1.94.0 with enhanced file watching capabilities and platform-specific optimizations.