Coder Social home page Coder Social logo

Comments (6)

greenkeeper avatar greenkeeper commented on May 14, 2024

After pinning to 1.4.3 your tests are passing again. Downgrade this dependency 📌.

from can-route-pushstate.

greenkeeper avatar greenkeeper commented on May 14, 2024

Version 1.4.5 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes Fixing binding to getters that use lastSetVal

#261

This fixes an issue where if you have a getter using lastSetVal like:

  place: {
    get: function(lastSet){
      if(lastSet) {
        return lastSet;
      }
    }
  }

and were binding to it in a template like:

    {{#if place}}
      THERE IS A PLACE
    {{/if}}

The template would not be updated when setting place.

Commits

The new version differs by 3 commits.

  • 45d3016 Update dist for release
  • 6e2eac6 Merge pull request #261 from canjs/observation-last-set-val
  • b5d03c1 Fixing issue with Observation bound to getters that use lastSetVal

See the full diff

from can-route-pushstate.

greenkeeper avatar greenkeeper commented on May 14, 2024

Version 1.4.6 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes Using can-simple-observable for getters using lastSetValue

#265

Commits

The new version differs by 7 commits.

  • 847abc2 Update dist for release
  • ec2bc73 Merge pull request #265 from canjs/can-simple-observable
  • 4419b0f using can-simple-value for getters using lastSetValue
  • 783fd1f ignoring package-lock
  • 45d3016 Update dist for release
  • 6e2eac6 Merge pull request #261 from canjs/observation-last-set-val
  • b5d03c1 Fixing issue with Observation bound to getters that use lastSetVal

See the full diff

from can-route-pushstate.

greenkeeper avatar greenkeeper commented on May 14, 2024

Version 1.4.7 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes Republishing 1.4.6

npm/npm#18341 is causing test/ folders to be ignored by npm pack, which means that the canjs test suite cannot find the tests for can-define. This republishes [email protected] using [email protected].

Commits

The new version differs by 8 commits.

  • dd48c52 Update dist for release
  • 847abc2 Update dist for release
  • ec2bc73 Merge pull request #265 from canjs/can-simple-observable
  • 4419b0f using can-simple-value for getters using lastSetValue
  • 783fd1f ignoring package-lock
  • 45d3016 Update dist for release
  • 6e2eac6 Merge pull request #261 from canjs/observation-last-set-val
  • b5d03c1 Fixing issue with Observation bound to getters that use lastSetVal

See the full diff

from can-route-pushstate.

greenkeeper avatar greenkeeper commented on May 14, 2024

Version 1.5.0 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes Deprecate .set(Object)

DefineMap and DefineList have the .set() function for setting possibly-unknown keys to provided values. .set had a pattern that took an object and set properties based on the keys of the object. This is now deprecated in favor of the following functions:

  • .assign(Object) shallow-copies the properties of the object to the DefineMap/DefineList (object values are replaced). Existing keys on the map or list not part of the provided object are preserved.
  • .assignDeep(Object) deep-copies the properties of the object to the DefineMap/DefineList (object values are merged). Existing keys on the map or list not part of the provided object are preserved.
  • .update(Object) shallow-copies the properties of the object to the DefineMap/DefineList (object values are replaced). Existing keys on the map or list not part of the provided object are not preserved.
  • .updateDeep(Object) deep-copies the properties of the object to the DefineMap/DefineList (object values are merged). Existing keys on the map or list not part of the provided object are not preserved.
Commits

The new version differs by 27 commits.

  • 4758caf Update dist for release
  • a2ab97f Merge pull request #250 from canjs/245-deprecate-set
  • f38e699 Annotate confusing string->number conversions
  • 9056d22 Expand _length type check in iterator
  • f385cc6 Fix updates by guarding length
  • dd48c52 Update dist for release
  • 847abc2 Update dist for release
  • ec2bc73 Merge pull request #265 from canjs/can-simple-observable
  • 4419b0f using can-simple-value for getters using lastSetValue
  • 783fd1f ignoring package-lock
  • 45d3016 Update dist for release
  • 6e2eac6 Merge pull request #261 from canjs/observation-last-set-val
  • b5d03c1 Fixing issue with Observation bound to getters that use lastSetVal
  • fd7e23a Merge remote-tracking branch 'origin/master' into 245-deprecate-set
  • 5ee6d2e Updated documentation

There are 27 commits in total.

See the full diff

from can-route-pushstate.

greenkeeper avatar greenkeeper commented on May 14, 2024

Version 1.5.1 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes Use can-define-lazy-value

Using can-define-lazy-value instead of local replaceWith function.

#273

Commits

The new version differs by 32 commits.

  • 12e9480 Update dist for release
  • 340c51d Merge pull request #273 from canjs/define-lazy-value
  • 388c76b using can-define-lazy-value
  • 31c19a5 Merge pull request #272 from canjs/landscaper/define-cycles-github
  • 4758caf Update dist for release
  • a2ab97f Merge pull request #250 from canjs/245-deprecate-set
  • abbf940 landscaper: Add a cycle detection script to test process
  • f38e699 Annotate confusing string->number conversions
  • 9056d22 Expand _length type check in iterator
  • f385cc6 Fix updates by guarding length
  • dd48c52 Update dist for release
  • 847abc2 Update dist for release
  • ec2bc73 Merge pull request #265 from canjs/can-simple-observable
  • 4419b0f using can-simple-value for getters using lastSetValue
  • 783fd1f ignoring package-lock

There are 32 commits in total.

See the full diff

from can-route-pushstate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.