Closed greenkeeper[bot] closed 7 years ago
Your tests are still failing with this version. Compare the changes π¨
The new version differs by 13 commits.
26d4b30
Update dist for release
3fdaa23
fixing postversion script
1707547
getting tests to pass with reflect apis (#165)
826461d
Merge pull request #212 from canjs/fix-qunit-ok
4d07c86
Merge pull request #189 from canjs/dont-redefine-data
34f0854
Replaced QUnit.ok with QUnit.equal
34b8f5c
Fixing the incorrect use of QUnit.ok
18531dd
Merge remote-tracking branch 'origin/master' into dont-redefine-data
e3c3858
Make tests work on all supported platforms, including unrelated IE issue
fbf76d1
fix jshint error
b2c10a8
fix jshint error
9715a88
Add test to show that sealed objects are still not extensible
f023cbc
Don't attempt to redefine _data or _computed on DefineMaps if they're already defined
See the full diff
Your tests are passing again with this version. Explicitly upgrade to this version π
This is a bug fix release that fixes an issue with using Node.js Request objects inside of a define-map, which happens for done-ssr users.
Your tests are passing again with this version. Explicitly upgrade to this version π
The new version differs by 9 commits.
6cdfa19
Update dist for release
a7b1a5d
Merge pull request #222 from canjs/221-type-dm
c246e48
adds test for #221, fixes by upgrading can-reflect
2c82941
Update dist for release
147a388
skipping Object.seal test in production (#219)
34d51dd
Update dist for release
44044e6
Merge pull request #217 from canjs/ef
10f4bd6
Replace duck-typing hasMethod with can-reflect
838ad10
Add a breaking test for #216
See the full diff
Your tests are still failing with this version. Compare the changes π¨
The new version differs by 17 commits.
d39227f
Update dist for release
08dd1a6
Merge pull request #226 from canjs/updateDeep
062f753
adding tests for isPlainObject
7c25d13
calls splice correctly
ccaee51
upgrading versions
bd11bde
updating package
43776f2
jshint passes
0fa4ef3
all tests passing again
6cdfa19
Update dist for release
a7b1a5d
Merge pull request #222 from canjs/221-type-dm
c246e48
adds test for #221, fixes by upgrading can-reflect
2c82941
Update dist for release
147a388
skipping Object.seal test in production (#219)
34d51dd
Update dist for release
44044e6
Merge pull request #217 from canjs/ef
There are 17 commits in total.
See the full diff
Your tests are still failing with this version. Compare the changes π¨
fix extensible error message check for new safari: #229
Your tests are still failing with this version. Compare the changes π¨
Your tests are still failing with this version. Compare the changes π¨
This patch release is a purely internal change to use:
typeof string === 'string'
instead of can-util/js/is-string/is-string
Array.isArray
instead of can-util/js/is-array/is-array
These methods are deprecated.
The new version differs by 11 commits.
185bf1f
Update dist for release
3bdf805
Merge pull request #232 from canjs/real-is-array
9250288
Merge pull request #236 from canjs/greenkeeper/steal-tools-1.4.0
441be89
chore(package): update steal-tools to version 1.4.0
460a974
Merge pull request #235 from canjs/greenkeeper/testee-0.7.0
1ace67f
chore(package): update testee to version 0.7.0
e93192b
Merge pull request #234 from canjs/greenkeeper/can-reflect-1.2.1
68285d8
chore(package): update can-reflect to version 1.2.1
641b9b8
Merge pull request #233 from canjs/greenkeeper/can-compute-3.3.1
c8e5050
chore(package): update can-compute to version 3.3.1
ff98a74
Replace deprecated can-util/js/is-array with Array.isArray
See the full diff
Your tests are still failing with this version. Compare the changes π¨
The new version differs by 10 commits.
91d2555
Update dist for release
011e1e9
Merge pull request #242 from canjs/change-version-back
cb25d0d
changing version back to last successful release
9f2aa15
Update dist for release
667bd79
Update dist for release
b8c9212
Update dist for release
d899e84
Merge pull request #241 from canjs/239-observe-definelist-index
aaef85b
Dispatch event when an indexed list value changes. Resolves #239
94a5290
Merge pull request #238 from canjs/can-reflect-onvalue
b6e8a6b
Added a DefineList
test using canReflect.onValue()
to observe element value changes.
See the full diff
Your tests are still failing with this version. Compare the changes π¨
Your tests are still failing with this version. Compare the changes π¨
The new version differs by 5 commits.
c2279f7
Update dist for release
3bb34ec
Merge pull request #244 from canjs/149-on-key-value
cfc6024
making canReflect.onKeyValue not bind on the internal Observation for computed props
4c02116
calling define adds a CID
81aaec8
Observe on the object property
See the full diff
Your tests are still failing with this version. Compare the changes π¨
The new version differs by 5 commits.
cae36ab
Update dist for release
322c834
Merge pull request #255 from canjs/rollback-for-tests
6a9e147
Rolling back changes to fix failing can-connect tests
fd01bcf
Merge pull request #248 from canjs/dev-rel-12-update-generated-readmes
5ff1c9a
Remove generated API docs from the README
See the full diff
Your tests are still failing with this version. Compare the changes π¨
The new version differs by 18 commits.
af17448
Update dist for release
89f031f
Merge pull request #259 from canjs/bg-update-warning
cce5b90
Add second test case for value assigned to a constructor
3bf43ab
Update to give warning if value is set to a constructor
21787bb
Merge pull request #256 from canjs/202-warn-on-ignored-set
c3df182
Fix warning tests based on other merged PRs
82e9f37
Merge branch 'master' into 202-warn-on-ignored-set
f51e93a
Merge pull request #258 from canjs/bg-warn-148
0c389d4
Merge pull request #257 from canjs/205-warn-on-constructor-for-type
8b0fb11
Update warning message
97f89bd
Improve warning message for get-with-no-set condition
292b1a5
Move test to map/map-test.js
eeb2aab
Guard dev warning test behind System.env check
152705e
Warns when value property is assigned an object. Resolves #148
1448610
Warn when a constructor is supplied as a type definition (likely should be a Type) (#205)
There are 18 commits in total.
See the full diff
Your tests are passing again with this version. Explicitly upgrade to this version π
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
.
Your tests are passing again with this version. Explicitly upgrade to this version π
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
Your tests are passing again with this version. Explicitly upgrade to this version π
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 can-define@1.4.6
using npm@5.3.0
.
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
Merged 1.4.7 with PR #29
Your tests are passing again with this version. Explicitly upgrade to this version π
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.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
Version 1.0.26 of can-define just got published.
This version is covered by your current version range and after updating it in your project the build failed.
can-define is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you itβs very likely also breaking them. I recommend you give this issue a very 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/237143911?utm_source=github_status&utm_medium=notification)Commits
The new version differs by 2 commits.
7a1e57f
Update dist for release
4225b38
Update can-define.js (#207)
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: