canjs / can-connect

Model layer utilities for every JavaScript framework! Assemble real-time, high performance, restful data connections.
https://canjs.com/doc/can-connect.html
MIT License
29 stars 16 forks source link

An in-range update of can-stache is breaking the build 🚨 #409

Closed greenkeeper[bot] closed 6 years ago

greenkeeper[bot] commented 6 years ago

Version 4.1.1 of can-stache was just published.

Branch Build failing 🚨
Dependency can-stache
Current Version 4.1.0
Type dependency

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

can-stache is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details - ❌ **continuous-integration/travis-ci/push** The Travis CI build could not complete due to an error [Details](https://travis-ci.org/canjs/can-connect/builds/341549716?utm_source=github_status&utm_medium=notification)

Commits

The new version differs by 3 commits.

  • bcb5b78 4.1.1
  • b20c5e9 Merge pull request #468 from canjs/setattr
  • f12663b Use can-dom-mutate/node to set attributes

See the full diff

FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper Bot :palm_tree:

greenkeeper[bot] commented 6 years ago

After pinning to 4.1.0 your tests are passing again. Downgrade this dependency πŸ“Œ.

greenkeeper[bot] commented 6 years ago

Version 4.1.2 just got published.

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

Commits

The new version differs by 2 commits.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.1.3 just got published.

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

Release Notes {{#default()}} no longer changes the context

#476

Commits

The new version differs by 7 commits.

  • 6a5e51c 4.1.3
  • 9d18fc5 Merge pull request #476 from canjs/default-helper-context
  • 5398cd2 {{#default()}} no longer changes the context
  • 8034163 Merge pull request #471 from canjs/lookup-in-attributes
  • bf71cf6 updating test to use Helper Expression
  • 8d0d793 4.1.2
  • 506aa30 Cleanup markdown sample code (#465)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.1.4 just got published.

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

Release Notes Fixing magic tags within attributes

This fixes two issues related to attributes with magic tags like

<input value="{{foo}}">

#470
#477

Commits

The new version differs by 11 commits.

  • dbe2965 4.1.4
  • f9823f5 Merge pull request #478 from canjs/no-live-attr-warning
  • 698c345 removing warning for magic tags within attributes
  • dab39bd fixing magic tags within attributes
  • 6a5e51c 4.1.3
  • 9d18fc5 Merge pull request #476 from canjs/default-helper-context
  • 5398cd2 {{#default()}} no longer changes the context
  • 8034163 Merge pull request #471 from canjs/lookup-in-attributes
  • bf71cf6 updating test to use Helper Expression
  • 8d0d793 4.1.2
  • 506aa30 Cleanup markdown sample code (#465)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.1.5 just got published.

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

Release Notes 4.1.5

Fix negative literals parsing

Negative literals were incorrectly parsed as "lookup" identifiers, causing an expression like adjust(-10) to trigger warning because can-stache can not find -10 in the scope (and also, adjust would not receive the literal as expected).

kapture 2018-02-28 at 15 24 42

Commits

The new version differs by 14 commits.

  • 9445ff9 4.1.5
  • db9543e Merge pull request #480 from canjs/negative-literals
  • 1a7730b Negative numbers should be parsed as literals
  • dbe2965 4.1.4
  • f9823f5 Merge pull request #478 from canjs/no-live-attr-warning
  • 698c345 removing warning for magic tags within attributes
  • dab39bd fixing magic tags within attributes
  • 6a5e51c 4.1.3
  • 9d18fc5 Merge pull request #476 from canjs/default-helper-context
  • 5398cd2 {{#default()}} no longer changes the context
  • 8034163 Merge pull request #471 from canjs/lookup-in-attributes
  • bf71cf6 updating test to use Helper Expression
  • 8d0d793 4.1.2
  • 506aa30 Cleanup markdown sample code (#465)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.2.0 just got published.

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

Commits

The new version differs by 17 commits.

  • b1b092d 4.2.0
  • 09f3998 Merge pull request #479 from canjs/iai
  • 9445ff9 4.1.5
  • db9543e Merge pull request #480 from canjs/negative-literals
  • 1a7730b Negative numbers should be parsed as literals
  • 00e5317 Use can-stache-ast and deprecate intermediate_and_imports
  • dbe2965 4.1.4
  • f9823f5 Merge pull request #478 from canjs/no-live-attr-warning
  • 698c345 removing warning for magic tags within attributes
  • dab39bd fixing magic tags within attributes
  • 6a5e51c 4.1.3
  • 9d18fc5 Merge pull request #476 from canjs/default-helper-context
  • 5398cd2 {{#default()}} no longer changes the context
  • 8034163 Merge pull request #471 from canjs/lookup-in-attributes
  • bf71cf6 updating test to use Helper Expression

There are 17 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.2.1 just got published.

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

Release Notes 4.2.1

Fix false positive warning with hash expression on #each helpers.

{{#each(panels, panel=value)}}
  <p>{{panel.label}}</p>
{{/each}}

can-stache would incorrectly trigger a warning because value is not found in scope.

Commits

The new version differs by 23 commits.

  • c84cfab 4.2.1
  • 481a2d4 Merge pull request #482 from canjs/each-hash-warn
  • 4e5e170 Merge pull request #481 from canjs/lint
  • 183ad72 Cache type check and check argument position instead of type
  • 3670c37 Hash expressions used in each helper should not warn
  • 8fc7c6d Fix lint setup and existing lint issues
  • b1b092d 4.2.0
  • 09f3998 Merge pull request #479 from canjs/iai
  • 9445ff9 4.1.5
  • db9543e Merge pull request #480 from canjs/negative-literals
  • 1a7730b Negative numbers should be parsed as literals
  • 00e5317 Use can-stache-ast and deprecate intermediate_and_imports
  • dbe2965 4.1.4
  • f9823f5 Merge pull request #478 from canjs/no-live-attr-warning
  • 698c345 removing warning for magic tags within attributes

There are 23 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.2.2 just got published.

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

Commits

The new version differs by 26 commits.

  • 5c5ea49 4.2.2
  • fa69282 Merge pull request #485 from canjs/484-debugger-get
  • 02578e1 restore debugger get function (fixes #484)
  • c84cfab 4.2.1
  • 481a2d4 Merge pull request #482 from canjs/each-hash-warn
  • 4e5e170 Merge pull request #481 from canjs/lint
  • 183ad72 Cache type check and check argument position instead of type
  • 3670c37 Hash expressions used in each helper should not warn
  • 8fc7c6d Fix lint setup and existing lint issues
  • b1b092d 4.2.0
  • 09f3998 Merge pull request #479 from canjs/iai
  • 9445ff9 4.1.5
  • db9543e Merge pull request #480 from canjs/negative-literals
  • 1a7730b Negative numbers should be parsed as literals
  • 00e5317 Use can-stache-ast and deprecate intermediate_and_imports

There are 26 commits in total.

See the full diff