-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
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
Ship v4.1 #25972
Conversation
@mdo: I pushed a patch to ignore vnu.jar's wrong language code warnings because we get false positives. About the prefixes, https://github.com/browserslist/browserslist/blob/master/CHANGELOG.md#30 Regarding the rename, I don't think you should change the |
docs/4.1/migration.md
Outdated
@@ -319,7 +319,7 @@ Our documentation received an upgrade across the board as well. Here's the low d | |||
|
|||
### Responsive utilities | |||
|
|||
All `@screen-` variables have been removed in v4.0.0. Use the `media-breakpoint-up()`, `media-breakpoint-down()`, or `media-breakpoint-only()` Sass mixins or the `$grid-breakpoints` Sass map instead. | |||
All `@screen-` variables have been removed in v4.1.0. Use the `media-breakpoint-up()`, `media-breakpoint-down()`, or `media-breakpoint-only()` Sass mixins or the `$grid-breakpoints` Sass map instead. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The migration file shouldn't have the versions changed.
js/src/index.js
Outdated
@@ -31,7 +31,7 @@ import Util from './util' | |||
const maxMajor = 4 | |||
|
|||
if (version[0] < ltMajor && version[1] < minMinor || version[0] === minMajor && version[1] === minMinor && version[2] < minPatch || version[0] >= maxMajor) { | |||
throw new Error('Bootstrap\'s JavaScript requires at least jQuery v1.9.1 but less than v4.0.0') | |||
throw new Error('Bootstrap\'s JavaScript requires at least jQuery v1.9.1 but less than v4.1.0') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This also doesn't need to be changed.
@mdo: after you review let me know so that I rebase and clean up the branch before the final merge. |
js/src/index.js
Outdated
@@ -31,7 +31,7 @@ import Util from './util' | |||
const maxMajor = 4 | |||
|
|||
if (version[0] < ltMajor && version[1] < minMinor || version[0] === minMajor && version[1] === minMinor && version[2] < minPatch || version[0] >= maxMajor) { | |||
throw new Error('Bootstrap\'s JavaScript requires at least jQuery v1.9.1 but less than v4.0.0') | |||
throw new Error('Bootstrap\'s JavaScript requires at least jQuery v1.9.1 but less than v4.1.0') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is jQuery
version, not Bootstrap
.
Obviously hence why I reverted it.
…On Sat, Mar 31, 2018, 00:08 Vasilii Artemchuk ***@***.***> wrote:
***@***.**** approved this pull request.
------------------------------
In js/src/index.js
<#25972 (comment)>:
> @@ -31,7 +31,7 @@ import Util from './util'
const maxMajor = 4
if (version[0] < ltMajor && version[1] < minMinor || version[0] === minMajor && version[1] === minMinor && version[2] < minPatch || version[0] >= maxMajor) {
- throw new Error('Bootstrap\'s JavaScript requires at least jQuery v1.9.1 but less than v4.0.0')
+ throw new Error('Bootstrap\'s JavaScript requires at least jQuery v1.9.1 but less than v4.1.0')
This is jQuery version, not Bootstrap.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#25972 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAVVtX3kWguQtN0Bszs9Ng_7duqDK_JTks5tjp7egaJpZM4TAk-p>
.
|
ba95b06
to
d6018b0
Compare
d9231f4
to
f099c84
Compare
@mdo: when you are back to this,
Then run the build script as normal. If you run the |
New PR coming in #26218. |
docs/4.0/
todocs/4.1/
build/ship.sh
script to updated version from4.0.0
to4.1.0
We need to check some of this out though—I'm seeing some
-webkit
prefixes being dropped and I can't recall if those are intentional.