canjs / can-define-stream

Add useful stream conversion methods to a supplied can-define/map/map or can-define/list/list constructor using a stream interface such as can-stream-kefir.
https://canjs.com/doc/can-define-stream.html
MIT License
4 stars 2 forks source link

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

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-define-stream/builds/223232592)
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

greenkeeper[bot] commented 7 years ago

Version 1.5.6 just got published.

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

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 66 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
  • 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

There are 66 commits in total.

See the full diff

greenkeeper[bot] commented 7 years ago

Version 1.5.7 just got published.

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

Release Notes 1.5.7

This patch release include fixes for the following issues:

  • Improved error message when mismatched version package is found #1176
  • Improved error message when steal-less is not installed #995
  • Improved error message when package.json is missing "name" and "version" fields #1233
  • Fixes issue with the steal-module script tag type #1185
  • Fixes issue with a flag being out of scope inside Steal's core #1189
  • Fixes a bug loading peerDependencies that are listed as devDependencies as well #1228

πŸŽ‰ πŸŽ‰ πŸŽ‰

Commits

The new version differs by 88 commits.

  • cac56f1 1.5.7
  • 385b93f Merge pull request #1245 from stealjs/named-amd-deps
  • 9b1e795 Make sure locate hook gets a full load object
  • d83b69c Register full npm name of named AMD modules
  • 915c636 Merge pull request #1244 from stealjs/flag-scope
  • 974c598 Add isWindows flag to the scope of addToError
  • d8376df Merge pull request #1243 from stealjs/old-node
  • 65d4ca8 Merge pull request #1241 from stealjs/remove-artifact
  • 8b53b1e Stop running tests on Node.js 0.12.x
  • 4f33d89 Merge pull request #1239 from stealjs/steal-module
  • f7cdc0e Remove old steal-no-promise file
  • c4c989c Fix steal-module script extension
  • 92ad084 Merge pull request #1238 from stealjs/mismatch
  • ddefa4a Simplify mismatch version error message
  • b716d08 Merge pull request #1236 from stealjs/peer-deps

There are 88 commits in total.

See the full diff

greenkeeper[bot] commented 7 years ago

Version 1.5.8 just got published.

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

Release Notes 1.5.8

This patch release fixes a couple of issues related with the named AMD changes introduced in 1.5.7

  • Side bundles were incorrectly registered and steal would not load them correctly
  • An undefined reference would case steal to throw when bundleSteal is used in steal-tools

See stealjs/steal-tools#811

Commits

The new version differs by 92 commits.

  • 547aa53 1.5.8
  • 9128ba5 Merge pull request #1251 from stealjs/add-guard
  • 7fce49b Only register npm module names
  • f8ecf64 Guard against undefined currentLoad reference.
  • cac56f1 1.5.7
  • 385b93f Merge pull request #1245 from stealjs/named-amd-deps
  • 9b1e795 Make sure locate hook gets a full load object
  • d83b69c Register full npm name of named AMD modules
  • 915c636 Merge pull request #1244 from stealjs/flag-scope
  • 974c598 Add isWindows flag to the scope of addToError
  • d8376df Merge pull request #1243 from stealjs/old-node
  • 65d4ca8 Merge pull request #1241 from stealjs/remove-artifact
  • 8b53b1e Stop running tests on Node.js 0.12.x
  • 4f33d89 Merge pull request #1239 from stealjs/steal-module
  • f7cdc0e Remove old steal-no-promise file

There are 92 commits in total.

See the full diff

greenkeeper[bot] commented 7 years ago

Version 1.5.9 just got published.

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

Release Notes 1.5.9

This is a patch release that prevents forcing the stage-0 babel preset on users.

Commits

The new version differs by 96 commits.

  • bbe6c70 1.5.9
  • 1308057 Merge pull request #1255 from stealjs/stage0
  • 28cc45c fix the try catch
  • d1cf674 Limit the required babel presets
  • 547aa53 1.5.8
  • 9128ba5 Merge pull request #1251 from stealjs/add-guard
  • 7fce49b Only register npm module names
  • f8ecf64 Guard against undefined currentLoad reference.
  • cac56f1 1.5.7
  • 385b93f Merge pull request #1245 from stealjs/named-amd-deps
  • 9b1e795 Make sure locate hook gets a full load object
  • d83b69c Register full npm name of named AMD modules
  • 915c636 Merge pull request #1244 from stealjs/flag-scope
  • 974c598 Add isWindows flag to the scope of addToError
  • d8376df Merge pull request #1243 from stealjs/old-node

There are 96 commits in total.

See the full diff

greenkeeper[bot] commented 7 years ago

Version 1.5.10 just got published.

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

Release Notes 1.5.10

This is a bug fix releasing fixing a couple of parsing problems. One regarding AMD's detection of the CommonJS syntax, and other related to the steal.joinURIs API, used in places like steal-css. Big thanks to @James0x57 for his efforts fixing these bugs.

Pull Requests

Commits

The new version differs by 112 commits.

  • e333bac 1.5.10
  • 89f49c8 Merge pull request #1260 from stealjs/update-readme
  • 518870e Merge branch 'master' into update-readme
  • c210af1 Merge pull request #1259 from stealjs/rm-docs
  • 2053e89 Merge pull request #1257 from stealjs/typo-fix-loadimport
  • 5461dde Merge pull request #1258 from stealjs/joinuris
  • ca395f6 Remove stealjs docs from this repo
  • 5326099 Fix @ in url parsing problem. Tests from Matthew. Closes #1253
  • 72e53d0 Fix typo "load import" in quick-start.md
  • 78a5b4a Merge pull request #1249 from stealjs/amdcjsregex
  • 478b4d6 Merge branch 'master' into amdcjsregex
  • bbe6c70 1.5.9
  • 1308057 Merge pull request #1255 from stealjs/stage0
  • 28cc45c fix the try catch
  • d1cf674 Limit the required babel presets

There are 112 commits in total.

See the full diff

greenkeeper[bot] commented 7 years ago

Version 1.5.11 just got published.

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

Release Notes 1.5.11

This is a bug fix release, fixing an issue with steal-css breaking in production. The issue was our new CommonJS dependency detection algorithm, which causes a false-positive detection of a dependency in steal-css.

Issues

#1261 myhub app breaks in production

Commits

The new version differs by 115 commits.

  • e3b701a 1.5.11
  • 7452582 Merge pull request #1262 from stealjs/detect
  • a7d7ded False positive dep detection in minified steal-css
  • e333bac 1.5.10
  • 89f49c8 Merge pull request #1260 from stealjs/update-readme
  • 518870e Merge branch 'master' into update-readme
  • c210af1 Merge pull request #1259 from stealjs/rm-docs
  • 2053e89 Merge pull request #1257 from stealjs/typo-fix-loadimport
  • 5461dde Merge pull request #1258 from stealjs/joinuris
  • ca395f6 Remove stealjs docs from this repo
  • 5326099 Fix @ in url parsing problem. Tests from Matthew. Closes #1253
  • 72e53d0 Fix typo "load import" in quick-start.md
  • 78a5b4a Merge pull request #1249 from stealjs/amdcjsregex
  • 478b4d6 Merge branch 'master' into amdcjsregex
  • bbe6c70 1.5.9

There are 115 commits in total.

See the full diff

greenkeeper[bot] commented 7 years ago

Version 1.5.12 just got published.

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

Release Notes 1.5.12

This release is for docs only. It removes the Loading From CDN docs as those will not live in stealjs/stealjs.

Commits

The new version differs by 117 commits.

  • 53e8305 1.5.12
  • 0576730 Remove loading from cdn docs
  • e3b701a 1.5.11
  • 7452582 Merge pull request #1262 from stealjs/detect
  • a7d7ded False positive dep detection in minified steal-css
  • e333bac 1.5.10
  • 89f49c8 Merge pull request #1260 from stealjs/update-readme
  • 518870e Merge branch 'master' into update-readme
  • c210af1 Merge pull request #1259 from stealjs/rm-docs
  • 2053e89 Merge pull request #1257 from stealjs/typo-fix-loadimport
  • 5461dde Merge pull request #1258 from stealjs/joinuris
  • ca395f6 Remove stealjs docs from this repo
  • 5326099 Fix @ in url parsing problem. Tests from Matthew. Closes #1253
  • 72e53d0 Fix typo "load import" in quick-start.md
  • 78a5b4a Merge pull request #1249 from stealjs/amdcjsregex

There are 117 commits in total.

See the full diff

greenkeeper[bot] commented 7 years ago

Version 1.5.13 just got published.

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

Release Notes 1.5.13

This is a documentation release, removing the "Moving to Production" doc.

Commits

The new version differs by 119 commits.

  • ce03fbc 1.5.13
  • dd0ecbe Remove "Moving to Production" docs
  • 53e8305 1.5.12
  • 0576730 Remove loading from cdn docs
  • e3b701a 1.5.11
  • 7452582 Merge pull request #1262 from stealjs/detect
  • a7d7ded False positive dep detection in minified steal-css
  • e333bac 1.5.10
  • 89f49c8 Merge pull request #1260 from stealjs/update-readme
  • 518870e Merge branch 'master' into update-readme
  • c210af1 Merge pull request #1259 from stealjs/rm-docs
  • 2053e89 Merge pull request #1257 from stealjs/typo-fix-loadimport
  • 5461dde Merge pull request #1258 from stealjs/joinuris
  • ca395f6 Remove stealjs docs from this repo
  • 5326099 Fix @ in url parsing problem. Tests from Matthew. Closes #1253

There are 119 commits in total.

See the full diff