canjs / can-stream-kefir

Stream values into and out of computes
https://canjs.com/doc/can-stream-kefir.html
MIT License
3 stars 2 forks source link

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

Closed greenkeeper[bot] closed 7 years ago

greenkeeper[bot] commented 7 years ago

Version 1.4.6 of steal just got published.

Branch Build failing 🚨
Dependency steal
Current Version 1.4.5
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 failed [Details](https://travis-ci.org/canjs/can-stream-kefir/builds/223232479)
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 3 commits .

  • c5d165a 1.4.6
  • 494337c Merge pull request #1174 from stealjs/stuff
  • 53aa03c Update progressive loading guide with weather widget

See the full diff.

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.5.0 just got published.

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

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 passing again with this version. Explicitly upgrade to this version πŸš€

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 14 commits0.

  • 933bd12 1.5.1
  • ba6c847 Merge pull request #1181 from stealjs/attr-name
  • c6233bc Use attr.name to get an attribute's name
  • 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.2 just got published.

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

Release Notes v1.5.2

Improved progressive loading guide for #1188

Commits

The new version differs by 19 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
  • 933bd12 1.5.1
  • ba6c847 Merge pull request #1181 from stealjs/attr-name
  • c6233bc Use attr.name to get an attribute's name
  • 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

There are 19 commits in total.

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 48 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 48 commits in total.

See the full diff

greenkeeper[bot] commented 7 years ago

Version 1.5.4 just got published.

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

Release Notes 1.5.4

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

Issues

Commits

The new version differs by 51 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 51 commits in total.

See the full diff

greenkeeper[bot] commented 7 years ago

Version 1.5.5 just got published.

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

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 58 commits.

  • f988df2 1.5.5
  • 5e35152 Merge pull request #1222 from stealjs/1221-dynamic-clones
  • 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
  • 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

There are 58 commits in total.

See the full diff