Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the usage of deprecated methods #333

Merged
merged 1 commit into from
Aug 15, 2016

Conversation

Amir-61
Copy link
Contributor

@Amir-61 Amir-61 commented Aug 12, 2016

  • Remove the usage of deprecated methods in shared-class.test.js

Also it needs to be back-ported.

/to: @bajtos

* Remove the usage of deprecated methods in shared-class.test.js
@@ -143,12 +144,13 @@ describe('SharedClass', function() {
SomeClass.prototype.myMethod = function() {};
var METHOD_NAME = 'myMethod';
sc.defineMethod(METHOD_NAME, {
isStatic: true,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I could also use isStatic: false too, but in this case Line 153 needs to be changed to:

expect(sc.findMethodByName('prototype.myMethod').accessType).to.eql('READ');

@bajtos
Copy link
Member

bajtos commented Aug 15, 2016

Nice, :shipit:

@Amir-61 Amir-61 merged commit f474a0c into master Aug 15, 2016
@Amir-61 Amir-61 removed the #review label Aug 15, 2016
Amir-61 added a commit that referenced this pull request Aug 15, 2016
Backport from strong-remoting/#333
Amir-61 added a commit that referenced this pull request Aug 15, 2016
Backport from strong-remoting/#333
@Amir-61 Amir-61 deleted the remove_deprecated_shared_class_methods branch August 15, 2016 16:18
Traksewt pushed a commit to agriwebb/strong-remoting that referenced this pull request Mar 15, 2017
relicense as Artistic-2.0 only

update/insert copyright headers

Set to no compression when using change stream

Implement getEndpoints()

* Implement getEndpoints
* Deprecate getHttpMethod
* Deprecate getFullPath

2.27.0

 * Implement getEndpoints() (Amir Jafarian)
 * Set to no compression when using change stream (Candy)
 * update/insert copyright headers (Ryan Graham)
 * relicense as Artistic-2.0 only (Ryan Graham)
 * Handle array of errors. (Richard Pringle)

Add integration tests for coercion in REST

Implement comprehensive test suite describing coercion of input
arguments in the REST adapter.

The test-suite produces test/rest-coercion/report.csv that can be used
to compare results across different strong-remoting versions.

[back-port of strongloop#304]

Fix integration tests for coercion in REST

Address style violations, fix bug discovered by jshint.

Add http source "formData"

Add "formData" as an alias for "form", to make remoting metadata
close to Swagger.

[back-port of 2e4a500 and aa0bda6]

Prioritise auth errors over sharedCtor errors

Return 401 Not Authorized when making an unauthorised request
to a prototype method for a model instance that does not exist.

Potentially breaking change affecting prototype methods:
Hooks registered before "invoke" phase (i.e. "auth" phase and any custom
phases inserted before "invoke") will be called even when the model
instance was not found. The property "ctx.instance" will be undefined
in such case, hook handlers must account for this case.

2.28.0

 * Prioritise auth errors over sharedCtor errors (Miroslav Bajtoš)
 * Add http source "formData" (Fabian Off)
 * Fix integration tests for coercion in REST (Miroslav Bajtoš)
 * Add integration tests for coercion in REST (Miroslav Bajtoš)

2.28.1

Introduce support for integer datatype

There is  single datatype in Javascript for
representing numbers: i.e. `numbers`. This is a
patch to fix strong-remoting#317 - a feature
to support data type: `integer`. Includes
following changes:
- Update `convertValueToTargetType()` &
 `convertToBasicRemotingType()`
- Update `SharedMethod.getType()`
- Make `integer` check strict by-default.
 i.e. If argument and/or returned values are
 decimal or `> MAX_SAFE_INTEGER`, for
 argument: send `400`, for returns: send
 `500`
- Rework `convert` method to ignore all arrays
 except "array of integers"
- Add tests to rest-coercion integration
 tests
- Update test cases for integer data type
- Update shared-method.js to include
 support for Node v.0.10.x

2.29.0

 * Introduce support for integer datatype (gunjpan)

Backport of strongloop#329

Revert globalization of assert() messages

Remove the usage of deprecated methods

Backport from strong-remoting/strongloop#333

Add new API for finding/disabling remote methods

2.30.0

 * Add new API for finding/disabling remote methods (Candy)
 * Remove the usage of deprecated methods (Amir Jafarian)
 * Revert globalization of assert() messages (Miroslav Bajtoš)
 * Backport of strongloop#329 (deepakrkris)

Update dependencies

2.31.0

 * Update dependencies (Miroslav Bajtoš)

Fix tests to use res.get instead of res.headers

The latter is case-sensitive and expects header names in lower-case.

Backport strongloop#345

Add rest-coercion tests for zero-prefixed numbers

Don't convert arg values returned by http function

When an argument provides "http" mapping as a custom function, then
we should not traverse the return value to detect buffers and dates.
The return value could be a complex object, e.g. the full remoting
context, in which case the traversal takes too long (in order of
second!).

Deprecate built-in CORS middleware

Push the responsibility of enabling/configuring CORS back to the
application developer.

Add translation files

Update translation files - round#2

Fix support for hooks returning a Promise

Fix the code to correctly recurse and invoke next hooks after the
promise returned by the first hook callback was resolved.

2.32.0

 * Fix support for hooks returning a Promise (Miroslav Bajtoš)
 * Update translation files - round#2 (Candy)
 * Add translation files (Amir Jafarian)
 * Deprecate built-in CORS middleware (Miroslav Bajtoš)
 * Don't convert arg values returned by http function (Miroslav Bajtoš)
 * Add rest-coercion tests for zero-prefixed numbers (Miroslav Bajtoš)
 * Fix tests to use res.get instead of res.headers (Miroslav Bajtoš)

Update ja translation file

2.32.1

 * Update ja translation file (Candy)

Distinguish between "file" and "File" result types

Fix regression introduced by a85068e where we started to treat "File"
models as the new built-in type "file".

In this commit, the implementation is fixed to recognize only the
following form as the built-in file:

    { type: 'file' }

All other spellings, most notably "File", are treated as custom types
(models) now.

2.32.2

 * Distinguish between "file" and "File" result types (Fabien Franzen)

lockdown dependency for http-auth

Due to a recent release of 2.5.10 which broke node 10/12 support
this commit locks down dependency before 2.5.11 is released
as some registry will still pick up unpublished version (2.5.10)
2.4.11 is released with apache-md5, apache-crypt locked down

See http-auth/http-auth/commit/0097ed6195986942a65e14b38b3f30281c9f6435

Stop changing read-only Number property

Rework the code defining missing ES5/ES6 Number properties to not touch
the existing properties. This is needed to prevent errors like the
following:

    TypeError: Cannot assign to read only property 'MAX_SAFE_INTEGER'
    of function Number() { [native code] }"]

2.32.3

 * lockdown dependency for http-auth (David Cheung)
 * Stop changing read-only Number property (Kogulan Baskaran)

Stringify object query params as JSON [2.x]

Stringify query params which are objects in a way in which empty ararys
and null values are preserved instead of removed
(default querystring implementation).

backport of: strongloop#325

Rest-adapter errorHandler set content-type `json`

the defaultHandler always res.sends an object
therefore make sense to always set response header as such

Release LB2 LTS

Enable remote methods to be disabled by alias

2.33.0

 * Enable remote methods to be disabled by alias (Rémi Bèges)
 * Release LB2 LTS (Simon Ho)
 * Rest-adapter errorHandler set content-type `json` (David Cheung)
 * Stringify object query params as JSON [2.x] (Horia Radu)

Cache getRestMethodByName

This function in RestAdapter is slow due
to creating RestMethods each time.
This can be cached initially, and rechecked
if the entry was not found.

add unit test

updating for review
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants