Open greenkeeper[bot] opened 6 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.
devDependency
steal was updated from 1.12.6
to 2.1.10
.Update to this version instead π
This fixes a false positive JSON parse warning in production when a JSON module is loaded from another bundle.
devDependency
steal was updated from 1.12.6
to 2.1.12
.Update to this version instead π
This is a patch release, which adds names to all of the extension functions to make them easier to debug.
devDependency
steal was updated from 1.12.6
to 2.1.13
.Update to this version instead π
Fixes an issue where a module loading a dependency by its exact npm module name might load the wrong package version and error out.
devDependency
steal was updated from 1.12.6
to 2.1.14
.Update to this version instead π
The new version differs by 7 commits.
66c61e1
2.1.14
13b376b
Merge pull request #1493 from stealjs/1463-npm-import-warn-with-importer
344bf2c
fix the test
15b8d99
clean up tests
86a7944
fix the stack message
eaf8a98
remove comment
da1d68b
warn with the importer in case of missing module
See the full diff
devDependency
steal was updated from 1.12.6
to 2.2.0
.Update to this version instead π
{
"steal": {
"forceES5": false // defaults to true
}
}
when set to false, Steal.js does not include the ES2015 preset. This is useful when the target browser supports all of the syntax/features transpiled by the ES2015 preset.
The new version differs by 6 commits.
506c89c
2.2.0
c8d7644
Merge pull request #1495 from stealjs/keep-es2015
8ba4669
Change forceES5 check condition, treat as true by default
e4acde4
Call done() to finish test case
fb5b348
Introduce forceES5 flag to skip ES2015 transpilation
8d59f3b
Update the badges
See the full diff
devDependency
steal was updated from 1.12.6
to 2.2.2
.Update to this version instead π
The new version differs by 5 commits.
a1fd13d
2.2.2
5f4b0d0
Merge pull request #1501 from stealjs/system-register
ef3b887
Skip tests checking stack trace erros in Safari / Iphone
e91f6c7
Update Saucelabs platform parameters
607f49f
Use a stricter RegExp to detect System.register modules
See the full diff
devDependency
steal was updated from 1.12.6
to 2.2.3
.devDependency
steal was updated from 1.12.6
to 2.2.4
.
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: