canjs / can-zone

A context for tracking asynchronous activity in JavaScript applications.
https://v4.canjs.com/doc/can-zone.html
MIT License
92 stars 4 forks source link

An in-range update of steal is breaking the build 🚨 #110

Closed greenkeeper[bot] closed 7 years ago

greenkeeper[bot] commented 7 years ago

Version 1.3.2 of steal just got published.

Branch Build failing 🚨
Dependency steal
Current Version 1.3.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As steal is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this :muscle:


Status Details - ❌ **continuous-integration/travis-ci/push** The Travis CI build is in progress [Details](https://travis-ci.org/canjs/can-zone/builds/214236609) - ❌ **continuous-integration/appveyor/branch** AppVeyor build failed [Details](https://ci.appveyor.com/project/matthewp/can-zone/build/1.0.217)
Not sure how things should work exactly? There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html) and of course you may always [ask my humans](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper Bot :palm_tree:

greenkeeper[bot] commented 7 years ago

Version 1.4.1 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes 1.4.1

1.4.1 contains a couple of bug fixes.

Bugs

greenkeeper[bot] commented 7 years ago

Version 1.4.2 just got published.

Your tests are still failing with this version. Compare the changes 🚨

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[bot] commented 7 years ago

Version 1.4.6 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes 1.4.6

This is a documentation release that updates the Progressive Loading guide to use a weather listing rather than the GitHub listing.

screen shot 2017-04-18 at 11 00 56 am

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[bot] commented 7 years ago

Version 1.5.0 just got published.

Your tests are still failing with this version. Compare the changes 🚨

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[bot] commented 7 years ago

Version 1.5.1 just got published.

Your tests are still failing with this version. Compare the changes 🚨

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] commented 7 years ago

Version 1.5.2 just got published.

Your tests are still failing with this version. Compare the changes 🚨

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] commented 7 years ago

Version 1.5.3 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version πŸš€

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] commented 7 years ago

Version 1.5.4 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes 1.5.4

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

Issues

Commits

The new version differs by 32 commits.

  • 1371002 1.5.4
  • 92ed7e4 Merge pull request #1217 from stealjs/def
  • 4643388 .default -> ["default"]
  • 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

There are 32 commits in total.

See the full diff