Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions bazel/rules/rules_sass/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -365,18 +365,18 @@ packages:
dependency: transitive
description:
name: sass
sha256: "377a3931521291cfc9f9e079bc83514b6761f293f6eb8ac8c7788f63c2364ad0"
sha256: "00adc78d8c906d6f5435526ee770fb5183e71f19818985e53f566b98ef693f59"
url: "https://pub.dev"
source: hosted
version: "1.98.0"
version: "1.99.0"
sass_api:
dependency: "direct main"
description:
name: sass_api
sha256: f56bf1cedaee68f144863b68a4448d53a66c5857ad03b72c7adf739e5f5af1de
sha256: f1ce74be211d3f6d61321e47f19dbfaf7df257e7472046860f9cca0499f35909
url: "https://pub.dev"
source: hosted
version: "17.4.0"
version: "17.5.0"
shelf:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion bazel/rules/rules_sass/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ environment:

# Add regular dependencies here.
dependencies:
sass_api: 17.4.0
sass_api: 17.5.0
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

The sass_api dependency is pinned to an exact version, which is inconsistent with other dependencies in this file (like sprintf) that use caret syntax (^). In Dart, it is generally recommended to use semantic versioning ranges (e.g., ^17.5.0) in pubspec.yaml to allow for compatible patch and minor updates, while relying on pubspec.lock to ensure exact version pinning for reproducibility. This also helps avoid potential version solving conflicts for consumers of this package.

  sass_api: ^17.5.0

sprintf: ^7.0.0
# path: ^1.8.0
Loading