Closed greenkeeper[bot] closed 5 years ago
Update to this version instead π
This is a patch release, fixing a bug when attempting to use steal in an Electron environment with the npm plugin.
Update to this version instead π
This is a patch release, removing a false position for the "missing main" warning.
Update to this version instead π
This is a minor release, adding support for importing modules from http, https, and //
as specifiers.
The new version differs by 6 commits.
9f0d066
2.1.0
635645c
Merge pull request #1443 from stealjs/bundle-docs
6533b3d
docs for modlet workflow
051b6cc
add docs for stealjs/steal-tools#1036
fbb01a6
Merge pull request #1454 from stealjs/https
80e1242
Allow loading modules from http(s) specifiers
See the full diff
Update to this version instead π
This is a minor release, adding support for importing modules from http, https, and //
as specifiers.
Update to this version instead π
This is a patch release, fixing a fairly rare case where the specifier ../
is used and points to the package.json main
which happens to contain ./
Update to this version instead π
This contains 2 bug fixes:
import "foo";
.git+ssh
type of version URLs in package.json dependencies.The new version differs by 8 commits.
4c66952
2.1.2
95d4408
Merge pull request #1459 from stealjs/gitssh
02d018f
Merge pull request #1457 from stealjs/client-shake-bare-import
7051cea
Merge branch 'master' into gitssh
a684771
Don't encode if a tilde version range
53f54b0
Use Firefox 61 in CI
541cc4c
Correctly encode git+ssh dependencies
6eedeea
allowing bare imports without breaking client-side tree-shaking
See the full diff
devDependency
steal was updated from 1.12.5
to 2.1.3
.Update to this version instead π
This is a patch release, fixing stealjs/steal-tools#1071
devDependency
steal was updated from 1.12.5
to 2.1.4
.Update to this version instead π
This is a patch release that fixes a bug with less setting display: none
by default in its more recent versions. This change prevents this from occurring (steal-less already uses async loading, so there is no breaking change here).
devDependency
steal was updated from 1.12.6
to 2.1.6
.Update to this version instead π
This fixes a bug with using steal-clone in a tree-shaken context.
devDependency
steal was updated from 1.12.6
to 2.1.7
.Update to this version instead π
Fixes a bug when treeshaking a large app with multiple bundles.
devDependency
steal was updated from 1.12.6
to 2.1.9
.Update to this version instead π
This is a bug fix release, fixing an issue with tree-shaking modules with non-ES module parents.
Version 2.0.0 of steal was just published.
The version 2.0.0 is not covered by your current version range.
If you donβt accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
It might be worth looking into these changes and trying to get this project onto the latest version of steal.
If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you donβt have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.
Release Notes
2.0.0This is the second major release of steal, but has minimal number of breaking changes.
Check out the migration guide and upgrade today.
Major features
Native promises by default
In 1.0 the
steal.js
script included a polyfill for Promises. To use native promises you would need to usesteal-sans-promises.js
instead.In 2.0 that relationship is flipped.
steal.js
does not contain a polyfill and usingsteal-with-promises.js
will give you it.Tree shaking
Tree shaking is available in steal 2.0. Any time steal encounters a module that only exports from other modules it will follow that modules dependants and remove any unused imports. This will help when consuming a module that just imports from a lot of children. For builds (discussed in the steal-tools 2.0.0 release notes) this will reduce the size of bundles.
Support for .mjs scripts
With native modules now available in browers, some people are starting to use the file extension
.mjs
for modules using the import/export statement. In 2.0 this modules can be consumed from a steal app.Breaking changes
In addition to the polyfill change, there is one other breaking change.
The main is no longer automatically loaded.
Previously steal.js would always try to load the application's main. This was convenient when getting started but causes problems in larger apps with multiple pages, not all of them wanting the main to load.
So in 2.0, you have to add a
main
in your script tag. You can either be explicit about what to load:Or you can use the boolean attribute and steal.js will load your package.json
main
, as it would do in 1.x:Commits
The new version differs by 79 commits.
0112ad6
2.0.0
13d0471
Merge pull request #1449 from stealjs/major
1633f93
Update travis version
2cd85e3
Merge branch 'master' into major
96fb45d
2.0.0-pre.16
c766683
Merge pull request #1448 from stealjs/no-ts
cb594d6
Only allow tree shaking to be disabled by root package
c1038a3
Provide a way to disable treeShaking
501d041
2.0.0-pre.15
ec53b51
Merge pull request #1447 from stealjs/spec
83a9969
Handle case where moduleSpecifierFromName is called
e59ff89
2.0.0-pre.14
49f5672
Merge pull request #1446 from stealjs/exp-star
ed72087
Tree-shake export * modules that are progressively loaded
e95e45d
Merge pull request #1442 from stealjs/main-warn
There are 79 commits in total.
See the full diff
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those donβt help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper bot :palm_tree: