WANA
WANA copied to clipboard
Bump minimatch, gulp and semantic-ui in /examples/EOSIO_contracts/kingofeos/theme
Bumps minimatch to 3.1.2 and updates ancestor dependencies minimatch, gulp and semantic-ui. These dependencies need to be updated together.
Updates minimatch
from 0.2.14 to 3.1.2
Commits
699c459
3.1.22f2b5ff
fix: trim pattern25d7c0d
3.1.155dda29
fix: treat nocase:true as always having magic5e1fb8d
3.1.0f8145c5
Add 'allowWindowsEscape' option570e8b1
add publishConfig for v3 publishes5b7cd33
3.0.620b4b56
[fix] revert all breaking syntax changes2ff0388
document, expose, and test 'partial:true' option- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by isaacs, a new releaser for minimatch since your current version.
Updates gulp
from 3.9.1 to 4.0.2
Release notes
Sourced from gulp's releases.
v4.0.2
Fix
- Bind src/dest/symlink to the gulp instance to support esm exports (5667666) - Ref standard-things/esm#797
Docs
- Add notes about esm support (4091bd3) - Closes #2278
- Fix the Negative Globs section & examples (3c66d95) - Closes #2297
- Remove next tag from recipes (1693a11) - Closes #2277
- Add default task wrappers to Watching Files examples to make runnable (d916276) - Closes #2322
- Fix syntax error in lastRun API docs (ea52a92) - Closes #2315
- Fix typo in Explaining Globs (5d81f42) - Closes #2326
Build
- Add node 12 to Travis & Azure (b4b5a68)
v4.0.1
Fix
- Temporary workaround for facebook/Docusaurus#257 (9f4a2e9) - Closes facebook/Docusaurus#257
Docs
- Fix error in ES2015 usage example (a4e8d48) - Closes #2099 #2100
- Add temporary notice for 4.0.0 vs 3.9.1 documentation (126423a) - Closes #2121
- Improve recipe for empty glob array (45830cf) - Closes #2122
- Reword standard to default (b065a13)
- Fix recipe typo (86acdea) - Closes #2156
- Add front-matter to each file (d693e49) - Closes #2109
- Rename "Getting Started" to "Quick Start" & update it (6a0fa00)
- Add "Creating Tasks" documentation (21b6962)
- Add "JavaScript and Gulpfiles" documentation (31adf07)
- Add "Working with Files" documentation (50fafc6)
- Add "Async Completion" documentation (ad8b568)
- Add "Explaining Globs" documentation (f8cafa0)
- Add "Using Plugins" documentation (233c3f9)
- Add "Watching Files" documentation (f3f2d9f)
- Add Table of Contents to "Getting Started" directory (a43caf2)
- Improve & fix parts of Getting Started (84b0234)
- Create and link-to a "docs missing" page for LINK_NEEDED references (2bd75d0)
- Redirect users to new Getting Started guides (53e9727)
- Temporarily reference gulp@next in Quick Start (2cecf1e)
- Fixed a capitalization typo in a heading (3d051d8) - Closes #2242
- Use h2 headers within Quick Start documentation (921312c) - Closes #2241
- Fix for nested directories references (4c2b9a7)
- Add some more cleanup for Docusaurus (6a8fd8f)
- Temporarily point LINK_NEEDED references to documentation-missing.md (df7cdcb)
- API documentation improvements based on feedback (0a68710)
... (truncated)
Changelog
Sourced from gulp's changelog.
gulp changelog
4.0.0
Task system changes
- replaced 3.x task system (orchestrator) with new task system (bach)
- removed gulp.reset
- removed 3 argument syntax for
gulp.task
gulp.task
should only be used when you will call the task with the CLI- added
gulp.series
andgulp.parallel
methods for composing tasks. Everything must use these now.- added single argument syntax for
gulp.task
which allows a named function to be used as the name of the task and task function.- added
gulp.tree
method for retrieving the task tree. Pass{ deep: true }
for anarchy
compatible node list.- added
gulp.registry
for setting custom registries.CLI changes
- split CLI out into a module if you want to save bandwidth/disk space. you can install the gulp CLI using either
npm install gulp -g
ornpm install gulp-cli -g
, where gulp-cli is the smaller one (no module code included)- add
--tasks-json
flag to CLI to dump the whole tree out for other tools to consume- added
--verify
flag to check the dependencies in package.json against the plugin blacklist.vinyl/vinyl-fs changes
- added
gulp.symlink
which functions exactly likegulp.dest
, but symlinks instead.- added
dirMode
param togulp.dest
andgulp.symlink
which allows better control over the mode of the destination folder that is created.- globs passed to
gulp.src
will be evaluated in order, which means this is possiblegulp.src(['*.js', '!b*.js', 'bad.js'])
(exclude every JS file that starts with a b except bad.js)- performance for gulp.src has improved massively
gulp.src(['**/*', '!b.js'])
will no longer eat CPU since negations happen during walking now- added
since
option togulp.src
which lets you only match files that have been modified since a certain date (for incremental builds)- fixed
gulp.src
not following symlinks- added
overwrite
option togulp.dest
which allows you to enable or disable overwriting of existing files
Commits
069350a
Release: 4.0.2b4b5a68
Build: Add node 12 to Travis & Azure5667666
Fix: Bind src/dest/symlink to the gulp instance to support esm exports (ref s...4091bd3
Docs: Add notes about esm support (closes #2278)3c66d95
Docs: Fix the Negative Globs section & examples (closes #2297)1693a11
Docs: Remove next tag from recipes (closes #2277)d916276
Docs: Add default task wrappers to Watching Files examples to make runnable (...ea52a92
Docs: Fix syntax error in lastRun API docs (closes #2315)5d81f42
Docs: Fix typo in Explaining Globs (#2326)ea3bba4
Release: 4.0.1- Additional commits viewable in compare view
Updates semantic-ui
from 2.3.1 to 2.5.0
Release notes
Sourced from semantic-ui's releases.
Version 2.5.0 - Oct 6, 2022
Note
Special Note: If you run into any breaking changes with Gulp 4. Please reach out to me at [email protected] with bug reports
Critical Fix
- CSS - Fix extra semicolon causing CSS build of Semantic UI to fail compilation with various systems #7065 React Issue [CSS Repo Issue #81](Semantic-Org/Semantic-UI-CSS#81) [CSS Issue #75](Semantic-Org/Semantic-UI-CSS#75)
Breaking Changes
- Gulp - Updated all tasks to work with Gulp 4. This should fix SUI to install correctly on Node 12 or greater (see Gulp3 Issue for more details)
- Node - Updated scripts to build in Node 18 via vanilla install.
Build
- Theme - Allow site's global site theme to be missing #6876 Thanks
@cruzdanillo
- Meteor - Fix issue with misuse of
api.addAssets
#6790 Thanks@gimco
- Gulp - Report errors in build #7005 Thanks
@bundyo
Examples
- Modal - Fixed mutation observer was not properly disconnected
- Sticky - Adds new example for sticky to highlight behavior when sticky/context height varies
Bug Fixes
- Dropdown - Fix issue where dropdown menu could not open to right when in
right menu
inside aui menu
(See examples/sticky.html) for use-case- Sticky - Fix issue where element might be
bound bottom
(fixed to bottom of context) if the sticky element is larger than the context- Sticky - Fix issue when sticky size is larger than context size caused context
min-height
not to be set correctly.- Button - Fix usage of loading on in labeled button #7023 thanks
@flppv
Version 2.4.1 - Oct 13, 2018
Note
If you are using the
semantic-ui-less
package with versions of LESS before 3.5 somecalc
values will not be computed correctly due to changes in variable interpolation. It is recommended that you upgrade to at least 3.5 to continue using new versions of SUI. For more information see #6512Build
- LESS - SUI now supports less versions greater than
3.5.0
Thanks@sciyoshi
#6512- Gulp - Migrated deprecated
gulp-util
toreplace-ext
Thanks@stevelacy
#6322- Gulp - Updated all gulp dependencies to most recent released versions with modifications to tasks as necessary.
Bug Fixes
- Dropdown -
clearable
dropdown now works with dropdown that arenton:click
, likehover
ormanual
triggers. #6594- Modal - Fixed
fullscreen modal
having incorrect left offset with flex modals #6587- Embed - Embed will now correctly remove DOM metadata on
destroy
- Grid - Fix issue with
very relaxed vertically divided grid
having wrong margins on dividersVersion 2.4.0 - Sep 17, 2018
2.4.0
includes a new componentplaceholder
. To use this component in your existing SUI site, be sure to add@placeholder: 'default';
to yourtheme.config
. You can see an example intheme.config.example
New Components
- Placeholder - Added
ui placeholder
that can be used to show where content will soon appear.New UI Type
- Segment - Added new
ui placeholder segment
used to reserve space for UI when content is missing or empty.
... (truncated)
Changelog
Sourced from semantic-ui's changelog.
Version 2.5.0 - Oct 6, 2022
Note
Special Note: If you run into any breaking changes with Gulp 4. Please reach out to me at [email protected] with bug reports
Critical Fix
- CSS - Fix extra semicolon causing CSS build of Semantic UI to fail compilation with various systems #7065 React Issue [CSS Repo Issue #81](Semantic-Org/Semantic-UI-CSS#81) [CSS Issue #75](Semantic-Org/Semantic-UI-CSS#75)
Breaking Changes
- Gulp 4 -All tasks have been rewritten to work with Gulp 4. This should fix SUI to install correctly on Node 12 or greater (see Gulp3 Issue for more details)
Build
- Node - Updated scripts to build in Node 18 via vanilla install.
- Theme - Allow site's global site theme to be missing #6876 Thanks
@cruzdanillo
- Meteor - Fix issue with misuse of
api.addAssets
#6790 Thanks@gimco
- Gulp - Report errors in build #7005 Thanks
@bundyo
Examples
- Modal - Fixed mutation observer was not properly disconnected
- Sticky - Adds new example for sticky to highlight behavior when sticky/context height varies
Bug Fixes
- Dropdown - Fix issue where dropdown menu could not open to right when in
right menu
inside aui menu
(See examples/sticky.html) for use-case- Sticky - Fix issue where element might be
bound bottom
(fixed to bottom of context) if the sticky element is larger than the context- Sticky - Fix issue when sticky size is larger than context size caused context
min-height
not to be set correctly.- Button - Fix usage of loading on in labeled button #7023 thanks
@flppv
Version 2.4.2 - Oct 21, 2018
Build
- Fix issue that could prevent
gulp build
from running due to updates to gulp dependencies Thanks for assistance@himanshu230
#6631 #6622 #6067Version 2.4.1 - Oct 13, 2018
Note
If you are using the
semantic-ui-less
package with versions of LESS before 3.5 somecalc
values will not be computed correctly due to changes in variable interpolation. It is recommended that you upgrade to at least 3.5 to continue using new versions of SUI. For more information see #6512Build
- LESS - SUI now supports less versions greater than
3.5.0
Thanks@sciyoshi
#6512- Gulp - Migrated deprecated
gulp-util
toreplace-ext
Thanks@stevelacy
#6322- Gulp - Updated all gulp dependencies to most recent released versions with modifications to tasks as necessary.
Bug Fixes
- Dropdown -
clearable
dropdown now works with dropdown that arenton:click
, likehover
ormanual
triggers. #6594- Modal - Fixed
fullscreen modal
having incorrect left offset with flex modals #6587- Embed - Embed will now correctly remove DOM metadata on
destroy
- Grid - Fix issue with
very relaxed vertically divided grid
having wrong margins on dividersVersion 2.4.0 - Sep 17, 2018
... (truncated)
Commits
decf188
2.5.0 Notescc5e7f3
Tag more issues reporting build typo1c8f74c
Remove lockfile55e0ad0
Cleanup auto npm publishabfbbb9
Fix auto publishing npmde2d7fc
Finalize fixing admin scripts with kludge5bd99a3
Ye old annoying admin task rewrited89327e
Merge branch 'next' of github.com:Semantic-Org/Semantic-UI6f2a912
Work on admin scripts gulp4b19d2d3
Merge branch 'master' of github.com:Semantic-Org/Semantic-UI into next- 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 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) -
@dependabot use these labels
will set the current labels as the default for future PRs for this repo and language -
@dependabot use these reviewers
will set the current reviewers as the default for future PRs for this repo and language -
@dependabot use these assignees
will set the current assignees as the default for future PRs for this repo and language -
@dependabot use this milestone
will set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.