canjs / can-define-validate-validatejs

ValidateJS plugin for can-define
https://canjs.com/doc/can-define-validate-validatejs.html
MIT License
2 stars 0 forks source link

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

Closed greenkeeper[bot] closed 7 years ago

greenkeeper[bot] commented 7 years ago

Version 1.2.0 of steal just got published.

Branch Build failing 🚨
Dependency steal
Current Version 1.1.0
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-validate-validatejs/builds/199204006)
Release Notes 1.2.0

The 1.2.0 release includes 2 huge new features as well as a few bug fixes. The highlights are the new globals configuration, and cache busting.

Features

  • New globals configuration - This provides a way to specify configuration so that globals can depend on non-globals:

    "steal": {
        "meta": {
            "foo": {
                "format": "global", 
                "globals": {
                    "$$$": "bar"
                }
            }
        }
    }

    Documentation is available here.

  • Cache busting is now included in Steal directly. This allows you to specify a cache version of your application which will be used as a query parameter.

    <script src="./dist/steal.production.js" cache-version="12345"></script>

Bugs

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

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

Release Notes 1.2.1

1.2.1 is a bug fix release that fixes an issue that was causing the steal-tools tests to fail. See here.

This bug fix release makes it so that during a build if we encounter code such as:

require("./package");

Where ./package is actually a package.json, we will eventually retrieve the correct file after some retries.

greenkeeper[bot] commented 7 years ago

Version 1.2.2 just got published.

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

Release Notes 1.2.2

This is a bug fix release that improves the CommonJS detection within AMD modules. Now things like:

define(function(require){
  var foo = "some string stuff require('bar');";
});

Will not contain false positives.

Bugs

greenkeeper[bot] commented 7 years ago

Version 1.2.3 just got published.

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

Release Notes 1.2.3

This is a bug fix release that addresses an issue with live-reloading after an npm install.

steal-npm 1.0.9 contains a bug fix for live-reload. When doing an npm install with live-reload on, this keeps the internal state of the npm plugin for use thereafter.

greenkeeper[bot] commented 7 years ago

Version 1.2.4 just got published.

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

Release Notes 1.2.4

This is a bug fix release, fixing a bug with configuration not being applied during a package.json live-reload.

Bugs

greenkeeper[bot] commented 7 years ago

Version 1.2.5 just got published.

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

Release Notes 1.2.5

This is a bug fix release that helps with live-reload when running on the server.

Bugs

greenkeeper[bot] commented 7 years ago

Version 1.2.6 just got published.

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

Release Notes 1.2.6

This is a bug fix release of steal-npm related to package.json loading

greenkeeper[bot] commented 7 years ago

Version 1.2.7 just got published.

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

Release Notes 1.2.7

This is a patch release that fixes a problem loading Steal in Node

Commits

The new version differs by 3 commits .

  • 7d150d4 1.2.7
  • 6170809 Merge pull request #1067 from stealjs/move-loader-deps
  • c7de081 Move steal-es6-module-loader to package dependencies

See the full diff.

greenkeeper[bot] commented 7 years ago

Version 1.2.8 just got published.

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

greenkeeper[bot] commented 7 years ago

Version 1.2.9 just got published.

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

Release Notes 1.2.9

This is a bug fix release that allows child packages to import devDependencies.

When you install a dependency that looks like:

{
  "name": "child",
  "devDependencies": {
    "foo": "1.0.0"
  }
}

And this child dependency tries to import its devDependency:

require("foo");

Previously this would fail, because npm does not install a child dependency's devDependencies. However, in some cases foo might have been installed anyways; because it is installed by another package for example. Now steal will try to resolve the devDependency package.

Issues

greenkeeper[bot] commented 7 years ago

Version 1.2.10 just got published.

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

Release Notes 1.2.10

This is a bug fix release that makes it possible to load Steal within an Electron app.

Issues

greenkeeper[bot] commented 7 years ago

Version 1.2.11 just got published.

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

greenkeeper[bot] commented 7 years ago

Version 1.3.0 just got published.

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

Release Notes 1.3.0

Development bundles

This release adds a major new feature, development bundles. Development bundles provide a way to create a bundle of your development dependencies (npm packages) so that you don't need to import all of the individual files.

To use development bundles, you need to install steal-tools@1.2.0 and steal@1.3.0.

You can create a bundle one of 2 ways:

steal-tools bundle --deps

This creates a deps bundle that includes all of your node_modules/ dependencies.

Or:

steal-tools bundle --dev

This creates a dev bundle that includes all of your node_modules/ and your package.json configuration.

To use these bundles you then change your steal script tag to either:

<script src="node_modules/steal/steal" dev-bundle></script>

or

<script src="node_modules/steal/steal" deps-bundle></script>

Issues

greenkeeper[bot] commented 7 years ago

Version 1.3.1 just got published.

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

Release Notes 1.3.1

This is patch release fixing a problem with incorrect baseURL in IE9 and IE10

greenkeeper[bot] commented 7 years ago

Version 1.3.2 just got published.

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

greenkeeper[bot] commented 7 years ago

Version 1.4.0 just got published.

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

Release Notes 1.4.0

Babel plugins and presets

This new release allows StealJS to use babel plugins and presets defined in the babelOptions object.

StealJS uses babel-standalone internally, to use any of the builtin plugins/presets you just need to add them to the babelOptions object in your package.json:

"steal": {
  "babelOptions": {
    "plugins": [
      "transform-decorators-legacy"
    ] 
  }
}

Non builtin plugins/presets are also supported, just make sure you install the npm packages along with adding them to the babelOptions object.

Check out the StealJS docs to learn more about this new feature.

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

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

Version 1.4.2 just got published.

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

Release Notes 1.4.2

This is a bug fix release.

Issues

#1092 CSS is parsed as JSON if file starts with an attribute selector
#1153 Update string_decoder to the latest version
#1127 Update babel-standalone to the latest version
#1123 Prevent System.ext from having a 'constructor'
#1151 Update https-browserify to the latest version
#1149 Update grunt-contrib-uglify to the latest version
#1159 Prevent mutating params
#1161 Improve CJS module format detection
#1163 Let the user know when live-reload is unable to connect

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