Skip to content

Conversation

@greenkeeper
Copy link
Contributor

@greenkeeper greenkeeper bot commented Mar 8, 2017

Version 1.3.0 of steal just got published.

Dependency steal
Current Version 0.16.44
Type devDependency

The version 1.3.0 is not covered by your current version range.

Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.

I recommend you look into these changes and try to get onto the latest version of steal.
Given that you have a decent test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update.


Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Mar 10, 2017

Version 1.3.1 just got published.

Update to this version instead 🚀

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Mar 23, 2017

Version 1.3.2 just got published.

Update to this version instead 🚀

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Apr 3, 2017

Version 1.4.0 just got published.

Update to this version instead 🚀

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Apr 4, 2017

Version 1.4.1 just got published.

Update to this version instead 🚀

Release Notes 1.4.1

1.4.1 contains a couple of bug fixes.

Bugs

Commits

The new version differs by 5 commits .

  • 6871bc3 1.4.1
  • b077621 Merge pull request #1147 from stealjs/fetch-babel
  • a469a3e Prevent unwanted global package name loading
  • 9ca23bc Merge pull request #1142 from stealjs/contextual-plugin-loader
  • d613bc2 Use pluginLoader in contextual extension

See the full diff.

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Apr 13, 2017

Version 1.4.2 just got published.

Update to this version instead 🚀

Commits

The new version differs by 37 commits .

  • 97be2e7 1.4.2
  • e9a9444 Merge pull request #1164 from stealjs/lr-error
  • c42cb6a Log an error when unable to connect to ws server
  • c6e7629 Merge pull request #1161 from stealjs/cjs-detection
  • e939257 Improve CJS module format detection
  • 05227f5 Merge pull request #1160 from stealjs/remove-babel-core
  • 35533bb Replace babel-core with babel-standalone (patch)
  • 336f6a0 Remove old deprecated babel files (patch)
  • 71ef85c Merge pull request #1159 from stealjs/opt
  • 4b07e48 Ext plugin: make sure to pass normalized name
  • 8848364 Don't run linting in Node 0.12
  • 3be05a8 Prevent mutating params
  • 2e20c32 Merge pull request #1149 from stealjs/greenkeeper/grunt-contrib-uglify-2.3.0
  • 2204e49 Merge pull request #1151 from stealjs/greenkeeper/https-browserify-1.0.0
  • 41d48d9 Add updated steal production file (patch)

There are 37 commits in total. See the full diff.

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Apr 18, 2017

Version 1.4.6 just got published.

Update to this version instead 🚀

Commits

The new version differs by 17 commits .

  • c5d165a 1.4.6
  • 494337c Merge pull request #1174 from stealjs/stuff
  • 53aa03c Update progressive loading guide with weather widget
  • 6be0936 1.4.5
  • af8be69 Merge pull request #1162 from stealjs/update-contributing
  • 02acb7c Multiple updates to the Contributing guide
  • 3ae9f6a Merge pull request #1173 from stealjs/lr-dispose
  • b2bb33c Add a path to the local live-reload
  • fe5c3a7 Use Firefox 52 in saucelabs
  • 69724c9 Call dispose callback when disposing a module
  • ad1159b 1.4.4
  • cb104c2 Remove undefined reference
  • 345ec98 Merge branch 'master' of github.com:stealjs/steal
  • 7a021ee 1.4.3
  • 04593df Remove noisey error message

There are 17 commits in total. See the full diff.

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Apr 24, 2017

Version 1.5.0 just got published.

Update to this version instead 🚀

Release Notes 1.5.0

This is a minor release of steal that adds the new homeAlias option and a new build of steal.js that excludes the promises polyfill.

Features

homeAlias

Steal 1.0 added the tilde operator that allows you to reference your project's root/home folder using the ~ scheme like so:

import "~/components/tabs";

The ~ character was chosen because it correlates nicely to the concept of home directories in the filesystem. However since some ecosystems have this same idea but use another character (for example, in the Vue community using @/ is common) the homeAlias config option was added so that you can change what character is used to indicate the home folder.

{
  "steal": {
    "homeAlias": "@"
  }
}
import "@/components/tabs";

The ~ scheme is the default homeAlias, so no configuration is needed to use that.

steal-sans-promises

Now that it is 2017 more and more browsers support Promise native. For many projects there is no need to use a polyfill.

In Steal 2.0 it is likely that no polyfill will be included (or might be included optionally), but in the meantime the steal-sans-promises.js and steal-sans-promises.production.js scripts have been added to steal.

Use them in exactly the same manner that you use steal.js today:

<script src="./node_modules/steal/steal-sans-promises.js"></script>

Note that when building with steal-tools the steal.production.js script is copied into your dest folder. This is the normal version of steal which does include the Promise polyfill. There is an open issue to provide a way to use steal-sans-promises.production.js instead (and ditto for using bundleSteal). In the meantime you can use steal-sans-promises from node_modules like so:

<script src="./node_modules/steal/steal-sans-promises.production.js" main="app/main"></script>

Issues

Commits

The new version differs by 11 commits0.

  • 0988858 1.5.0
  • 80f92eb Merge pull request #1179 from stealjs/1108-build-without-promise-shim
  • 7309897 Exclude the loader build from eslinting
  • a2c63b9 Make steal-sans-promises work in Production
  • cfac392 Merge pull request #1178 from stealjs/home-alias
  • eb2da30 Document the homeAlias option.
  • e99bd1e Add homeAlias test
  • 4e70321 Add homeAlias option
  • b3a5a75 Merge pull request #1175 from stealjs/greenkeeper/os-browserify-0.3.0
  • c642f49 fix(package): update os-browserify to version 0.3.0
  • fb9fb58 Fixes #1108. Adds tasks to build without promise shim

false

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Apr 25, 2017

Version 1.5.1 just got published.

Update to this version instead 🚀

Release Notes 1.5.1

This is a bug fix release that fixes an issue with Zombie 5.x. Zombie no longer supports the attribute.nodeName property. This release fixes this by using attribute.name instead. Fixed #1177

Commits

The new version differs by 3 commits0.

  • 933bd12 1.5.1
  • ba6c847 Merge pull request #1181 from stealjs/attr-name
  • c6233bc Use attr.name to get an attribute's name

false

See the full diff

greenkeeper bot added a commit that referenced this pull request May 3, 2017
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented May 3, 2017

Version 1.5.2 just got published.

Update to this version instead 🚀

Release Notes v1.5.2

Improved progressive loading guide for #1188

Commits

The new version differs by 5 commits0.

  • 2764ffa v1.5.2
  • bb1f22b Merge pull request #1190 from stealjs/1188-prog-loading
  • 90ee8d6 minor fixes for progressive loading, fixes #1188
  • 57e2ede Merge pull request #1184 from stealjs/copy-versions-to-local
  • 1772e27 Copy versions to local loader

false

See the full diff

greenkeeper bot added a commit that referenced this pull request Jun 14, 2017
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jun 14, 2017

Version 1.5.3 just got published.

Update to this version instead 🚀

Release Notes 1.5.3

This is a bug fix release, which fixes an issue when using live-reload with steal-clone. Also includes some minor documentation improvements to the Babel docs and progressive loading guide.

Issues

Commits

The new version differs by 29 commits.

  • 3d1e152 1.5.3
  • 0504397 1.5.3
  • 2ac5ddb Merge pull request #1198 from stealjs/greenkeeper/grunt-contrib-uglify-3.0.0
  • 3cf4c7d Merge pull request #1182 from stealjs/greenkeeper/fs-extra-3.0.0
  • 3dbe6fd Merge pull request #1183 from stealjs/greenkeeper/http-server-0.10.0
  • fbaa454 Merge pull request #1191 from stealjs/improve-progressive-guide
  • 8312992 Merge pull request #1214 from stealjs/lr-clone
  • 2ddfbcc Make the live-reload extension cloneable
  • d16aaa2 Merge pull request #1200 from stealjs/greenkeeper/babel-standalone-6.24.2
  • 30da726 Merge pull request #1204 from stealjs/quotes
  • 76435f7 Use double quotes in html attributes
  • a997885 chore(package): update babel-standalone to version 6.24.2
  • 840388f Merge pull request #1199 from stealjs/greenkeeper/babel-standalone-6.24.1
  • 236d098 chore(package): update babel-standalone to version 6.24.1
  • 6ff72c7 chore(package): update grunt-contrib-uglify to version 3.0.0

There are 29 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Jun 15, 2017
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jun 15, 2017

Version 1.5.4 just got published.

Update to this version instead 🚀

Release Notes 1.5.4

This is a bug-fix release that fixes usage in IE9.

Issues

Commits

The new version differs by 3 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 3, 2017
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jul 3, 2017

Version 1.5.5-pre.0 just got published.

Update to this version instead 🚀

Commits

The new version differs by 6 commits.

  • eada8bc include build files and make pre-release
  • 65abac0 fixes #1221 and adds tests for it
  • 5ef2d0d shows problem doesn't require dynamic imports
  • 245739b demonstrates error with #1221
  • 115a8f0 Merge pull request #1215 from stealjs/greenkeeper/testee-0.5.1
  • a48415c chore(package): update testee to version 0.5.1

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 3, 2017
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jul 3, 2017

Version 1.5.5 just got published.

Update to this version instead 🚀

Release Notes v1.5.5

Patches

  • Chore(package): update testee to version 0.5.1: a48415c
  • Merge pull request #1215 from stealjs/greenkeeper/testee-0.5.1: 115a8f0
  • Demonstrates error with #1221: 245739b
  • Shows problem doesn't require dynamic imports: 5ef2d0d
  • Fixes #1221 and adds tests for it: 65abac0
  • Merge pull request #1222 from stealjs/1221-dynamic-clones: 5e35152
Commits

The new version differs by 2 commits ahead by 2, behind by 1.

  • f988df2 1.5.5
  • 5e35152 Merge pull request #1222 from stealjs/1221-dynamic-clones

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 26, 2017
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jul 26, 2017

Version 1.5.6 just got published.

Update to this version instead 🚀

Release Notes 1.5.6

Patches

  • Keep crawling when an incompatible package version is found (#1224)
  • Descriptive version mismatch error (#1176)
  • Descriptive error message for unresolved packages not saved as a dependency (#1205)
Commits

The new version differs by 8 commits.

  • 65c62a5 1.5.6
  • d52f9ed Merge pull request #1229 from stealjs/unsaved-dep
  • 18cd088 Only pass the error object to console.error
  • 051fef0 Better error message for possible unsaved packages
  • 12c3dff Merge pull request #1226 from stealjs/error-message
  • 52b59ee Descriptive version mismatch error
  • fa0e0c8 Merge pull request #1225 from stealjs/crawl-parent
  • d6d74a0 Continue crawling when a incompatible parent is found

See the full diff

greenkeeper bot added a commit that referenced this pull request Oct 18, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Oct 18, 2018

  • The devDependency steal was updated from 0.16.45 to 2.1.5.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • 709a004 2.1.5
  • c8ed817 Merge pull request #1469 from stealjs/empty-es
  • cce3dc5 Mark @empty as an __esModule

See the full diff

greenkeeper bot added a commit that referenced this pull request Oct 25, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Oct 25, 2018

  • The devDependency steal was updated from 0.16.45 to 2.1.6.

Update to this version instead 🚀

Release Notes for 2.1.6

This fixes a bug with using steal-clone in a tree-shaken context.

Commits

The new version differs by 3 commits.

  • 21e8207 2.1.6
  • 56eb233 Merge pull request #1471 from stealjs/ts-clone
  • 947e105 Make steal-clone work with tree-shaken trees

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 5, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Nov 5, 2018

  • The devDependency steal was updated from 0.16.45 to 2.1.7.

Update to this version instead 🚀

Release Notes for 2.1.7

Fixes a bug when treeshaking a large app with multiple bundles.

Commits

The new version differs by 3 commits.

  • 1fd569d 2.1.7
  • af8026d Merge pull request #1474 from stealjs/newloader-config
  • 5ab883f Maintain all tree-shaking state during the build

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 12, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Nov 12, 2018

  • The devDependency steal was updated from 0.16.45 to 2.1.8.

Update to this version instead 🚀

Commits

The new version differs by 4 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 27, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Nov 27, 2018

  • The devDependency steal was updated from 0.16.45 to 2.1.9.

Update to this version instead 🚀

Release Notes for 2.1.9

This is a bug fix release, fixing an issue with tree-shaking modules with non-ES module parents.

Issues

#1477 Tree-shaking extension fails for non-named imports

Commits

The new version differs by 4 commits.

  • 2bd6ab0 2.1.9
  • 31ce213 Merge pull request #1479 from stealjs/reexptree
  • 38cea48 All exports are used when immediate parent is non-ES
  • 488619c Account for non-ES modules in parent tree

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 29, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Nov 29, 2018

  • The devDependency steal was updated from 0.16.45 to 2.1.10.

Update to this version instead 🚀

Release Notes for 2.1.10

This fixes a false positive JSON parse warning in production when a JSON module is loaded from another bundle.

Commits

The new version differs by 4 commits.

  • 6284000 2.1.10
  • 367badb Merge pull request #1481 from stealjs/json-bundle
  • 490b47e Make JSON error test work in Firefox
  • 9e2e174 Mark loads loaded through bundles config to be defined

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 12, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Dec 12, 2018

  • The devDependency steal was updated from 0.16.45 to 2.1.11.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • e112945 2.1.11
  • 16160cd Merge pull request #1485 from stealjs/reexp
  • ccd3604 Prevent tree-shaking the main

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 28, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Dec 28, 2018

  • The devDependency steal was updated from 0.16.45 to 2.1.12.

Update to this version instead 🚀

Release Notes for 2.1.12

This is a patch release, which adds names to all of the extension functions to make them easier to debug.

Commits

The new version differs by 5 commits.

  • 0a5b510 2.1.12
  • f217d58 Merge pull request #1488 from stealjs/name-extensions
  • 7b4a55c Run the build
  • 93e5c8c Add the npm extension name as well
  • 04f83d6 Give all extensions names

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 8, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jan 8, 2019

  • The devDependency steal was updated from 0.16.45 to 2.1.13.

Update to this version instead 🚀

Release Notes for 2.1.13

Fixes an issue where a module loading a dependency by its exact npm module name might load the wrong package version and error out.

Commits

The new version differs by 3 commits.

  • 8c81c5a 2.1.13
  • 81b9932 Merge pull request #1491 from stealjs/res-mod
  • a8f594c Prevent running normalization on already normalized npm names

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 15, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jan 15, 2019

  • The devDependency steal was updated from 0.16.45 to 2.1.14.

Update to this version instead 🚀

Commits

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

greenkeeper bot added a commit that referenced this pull request Mar 5, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Mar 5, 2019

  • The devDependency steal was updated from 0.16.45 to 2.2.0.

Update to this version instead 🚀

Release Notes for Introduce forceES5 flag to skip ES2015 transpilation
{
   "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.

Commits

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

greenkeeper bot added a commit that referenced this pull request Mar 25, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Mar 25, 2019

  • The devDependency steal was updated from 0.16.45 to 2.2.1.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • fcb4dcc 2.2.1
  • 78d1f07 Merge pull request #1496 from stealjs/env2
  • 897fd4b Document possible values of steal.loader.env

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 1, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Aug 1, 2019

  • The devDependency steal was updated from 0.16.45 to 2.2.2.

Update to this version instead 🚀

Commits

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

greenkeeper bot added a commit that referenced this pull request Sep 5, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Sep 5, 2019

  • The devDependency steal was updated from 0.16.45 to 2.2.3.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Oct 22, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Oct 22, 2019

  • The devDependency steal was updated from 0.16.45 to 2.2.4.

Update to this version instead 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant