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

Bump sass from 1.64.1 to 1.65.1 #1997

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 14, 2023

Bumps sass from 1.64.1 to 1.65.1.

Release notes

Sourced from sass's releases.

Dart Sass 1.65.1

To install Sass 1.65.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Update abs-percent deprecatedIn version to 1.65.0.

See the full changelog for changes in earlier releases.

Dart Sass 1.65.0

To install Sass 1.65.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • All functions defined in CSS Values and Units 4 are now parsed as calculation objects: round(), mod(), rem(), sin(), cos(), tan(), asin(), acos(), atan(), atan2(), pow(), sqrt(), hypot(), log(), exp(), abs(), and sign().

  • Deprecate explicitly passing the % unit to the global abs() function. In future releases, this will emit a CSS abs() function to be resolved by the browser. This deprecation is named abs-percent.

See the full changelog for changes in earlier releases.

Dart Sass 1.64.2

To install Sass 1.64.2, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

Dart API

  • Include protocol buffer definitions when uploading the sass package to pub.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.65.1

  • Update abs-percent deprecatedIn version to 1.65.0.

1.65.0

  • All functions defined in CSS Values and Units 4 are now parsed as calculation objects: round(), mod(), rem(), sin(), cos(), tan(), asin(), acos(), atan(), atan2(), pow(), sqrt(), hypot(), log(), exp(), abs(), and sign().

  • Deprecate explicitly passing the % unit to the global abs() function. In future releases, this will emit a CSS abs() function to be resolved by the browser. This deprecation is named abs-percent.

1.64.3

Dart API

  • Deprecate explicitly passing null as the alpha channel for SassColor.rgb(), SassColor.hsl(), and SassColor.hwb(). Omitting the alpha channel is still allowed. In future releases, null will be used to indicate a missing component. This deprecation is named null-alpha.

  • Include protocol buffer definitions when uploading the sass package to pub.

JS API

  • Deprecate explicitly passing null as the alpha channel for new SassColor(). Omitting the alpha channel or passing undefined for it is still allowed. In future releases, null will be used to indicate a missing component. This deprecation is named null-alpha.

    (Note that this was already prohibited by the TypeScript types, but in practice prior to this null was treated as 1.)

1.64.2

  • No user-visible changes.
Commits

Dependabot compatibility score

You can trigger a rebase of this PR 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [sass](https://github.com/sass/dart-sass) from 1.64.1 to 1.65.1.
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.64.1...1.65.1)

---
updated-dependencies:
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the [T] Dependencies Used by Dependabot label Aug 14, 2023
@richardebeling
Copy link
Member

richardebeling commented Aug 21, 2023

Looks fine, however we get this very weird deprecation warning which doesn't really make sense to me when running ./manage.py scss after the update -- there is no abs to be found anywhere in the traceback?

Updating to bootstrap 5.3.0 doesn't resolve the deprecation warning.

(venv) evap@ubuntu-jammy:/opt/evap$ ./manage.py scss
Deprecation Warning: Passing percentage units to the global abs() function is deprecated.
In the future, this will emit a CSS abs() function to be resolved by the browser.
To preserve current behavior: math.abs(100%)
To emit a CSS abs() now: abs(#{100%})
More info: https://sass-lang.com/d/abs-percent

    ╷
1   │ ┌ @import "../bootstrap/scss/functions";
2   │ │ @import "variables";
3   │ │ @import "mixins";
4   │ │ @import "font-awesome";
5   │ │ @import "bootstrap";
6   │ │ @import "components";
7   │ │ @import "adjustments";
8   │ │ @import "utilities";
9   │ │
10  │ │ html {
11  │ │     position: relative;
12  │ │     min-height: 100%;
13  │ │     scroll-padding-top: 150px; // so scrolled-to elements are not hidden by navbar.
14  │ │ }
15  │ │
16  │ │ body {
17  │ │     overflow-y: scroll !important;
18  │ │     margin-bottom: 60px; // keep space for footer
19  │ │     background-image: url("../images/triangles_gray.svg");
20  │ │     background-size: cover;
21  │ │     background-attachment: fixed;
22  │ │ }
23  │ │
24  │ │ .footer {
25  │ │     position: absolute;
26  │ │     bottom: 0;
27  │ │     width: 100%;
28  │ │     height: 46px;
29  │ │     background: $darker-gray;
30  │ │     line-height: 1.2;
31  │ │     color: $light-gray;
32  │ │
33  │ │     a {
34  │ │         white-space: nowrap;
35  │ │     }
36  │ │
37  │ │     .navbar-nav .nav-link.nav-link-multiline {
38  │ │         line-height: 1.2;
39  │ │     }
40  │ │ }
41  │ │
42  │ │ .brand-image {
43  │ │     height: 42px;
44  │ │ }
45  │ │
46  │ │ .color-bar {
47  │ │     height: 0.2rem;
48  │ │     display: flex;
49  │ │ }
50  │ │
51  │ │ .participants-warning {
52  │ │     opacity: 0.3;
53  │ │     font-weight: normal;
54  │ │ }
55  │ │
56  │ │ .archive-info {
57  │ │     font-weight: normal;
58  │ │ }
59  │ │
60  │ │ .deactivate {
61  │ │     opacity: 0.4;
62  │ │ }
63  │ │
64  │ │ .textanswer-link {
65  │ │     color: $black;
66  │ │ }
67  │ │ .textanswer-original {
68  │ │     color: $medium-gray;
69  │ │ }
70  │ │
71  │ │ .grade-course-table tr {
72  │ │     height: 57px;
73  │ │ }
74  │ │
75  │ │ .sortable-ghost {
76  │ │     background: $lighter-gray;
77  │ │ }
78  │ │
79  │ │ .table-striped tbody tr.sortable-ghost {
80  │ │     background: $light-gray;
81  │ │ }
82  │ │
83  │ │ .sortable .movable {
84  │ │     width: 10px;
85  │ │ }
86  │ │
87  │ │ .sortable .movable span.movable-icon {
88  │ │     font-size: 16px;
89  │ │     top: 8px;
90  │ │     cursor: move;
91  │ │ }
92  │ │
93  │ │ .break-word {
94  │ │     li, a {
95  │ │         word-wrap: break-word;
96  │ │     }
97  │ │ }
98  │ │
99  │ │ .card-body .mb-3:last-of-type {
100 │ │     margin-bottom: 0;
101 │ │ }
102 │ │
103 │ │ td.icon {
104 │ │     padding: 0 !important;
105 │ │     text-align: center;
106 │ │     min-width: 20px;
107 │ │ }
108 │ │
109 │ │ .card-header .nav-pills {
110 │ │     .nav-link {
111 │ │         padding: 0.1rem 0.5rem;
112 │ │     }
113 │ │ }
114 │ │
115 │ │ /* Results index page */
116 │ │ // make the line always break between semester and year (e.g., "WT<break>17/18" and "ST<break>18")
117 │ │ .semester-short-name {
118 │ │     word-spacing: 30000px;
119 │ │ }
120 │ │
121 │ │ .reset-button {
122 │ │     color: $dark-gray;
123 │ │     font-weight: normal;
124 │ │     font-size: 1rem;
125 │ │     cursor: pointer;
126 │ │     transition: color 0.15s ease-in-out;
127 │ │
128 │ │     &:hover {
129 │ │         color: $darker-gray;
130 │ │     }
131 │ │
132 │ │     &:active {
133 │ │         color: $black;
134 │ │     }
135 │ │ }
136 │ │
137 │ │ .result-filter-list {
138 │ │     max-height: 170px;
139 │ │     overflow-y: auto;
140 │ │     padding-left: 4px;
141 │ │ }
142 │ │
143 │ │ .space-normal {
144 │ │     white-space: normal;
145 │ │ }
146 │ │
147 │ │ @media print {
148 │ │     @import "print";
149 │ └ }
    ╵
    evap/static/scss/evap.scss 1:1                            divide()
    evap/static/bootstrap/scss/mixins/_grid.scss 59:12        row-cols()
    evap/static/bootstrap/scss/mixins/_grid.scss 85:13        @content
    evap/static/bootstrap/scss/mixins/_breakpoints.scss 68:5  media-breakpoint-up()
    evap/static/bootstrap/scss/mixins/_grid.scss 72:5         make-grid-columns()
    evap/static/bootstrap/scss/_grid.scss 38:3                @import
    evap/static/scss/_bootstrap.scss 17:9                     @import
    evap/static/scss/evap.scss 5:9                            root stylesheet

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 21, 2023

Superseded by #2006.

@dependabot dependabot bot closed this Aug 21, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/sass-1.65.1 branch August 21, 2023 19:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
[T] Dependencies Used by Dependabot
Development

Successfully merging this pull request may close these issues.

1 participant