Remove deprecated buffer.get / buffer.set methods by feross · Pull Request #4594 · nodejs/node (original) (raw)

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 andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Conversation5 Commits1 Checks0 Files changed

Conversation

This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters

[ Show hidden characters]({{ revealButtonHref }})

feross

Fixes #4587.

These have been deprecated since Apr 27, 2013, and the plan was to
remove them in "node v0.13”.

buffer.get(index) is superseded by buffer[index].

buffer.set(index, value) is superseded by buffer[index] = value.

These have never been documented at any point in node's history.

@feross

Fixes #4587.

These have been deprecated since Apr 27, 2013, and the plan was to remove them in "node v0.13”.

buffer.get(index) is superseded by buffer[index].

buffer.set(index, value) is superseded by buffer[index] = value.

These have never been documented at any point in node's history.

@mscdex mscdex added the buffer

Issues and PRs related to the buffer subsystem.

label

Jan 8, 2016

@mscdex

@cjihrig

@vkurchatkin vkurchatkin added the semver-major

PRs that contain breaking changes and should be released in the next major version.

label

Jan 9, 2016

@trevnorris

Thanks for taking care of this. LGTM

@mscdex

silverwind pushed a commit that referenced this pull request

Jan 11, 2016

@feross @silverwind

These have been deprecated since Apr 27, 2013, and the plan was to remove them in "node v0.13".

buffer.get(index) is superseded by buffer[index]. buffer.set(index, value) is superseded by buffer[index] = value.

These have never been documented at any point in node's history.

PR-URL: #4594 Fixes: #4587 Reviewed-By: Colin Ihrig cjihrig@gmail.com Reviewed-By: Trevor Norris trev.norris@gmail.com Reviewed-By: Brian White mscdex@mscdex.net Reviewed-By: Roman Reiss me@silverwind.io

@silverwind

@feross feross deleted the remove-buffer-get-set branch

January 11, 2016 15:09

scovetta pushed a commit to scovetta/node that referenced this pull request

Apr 2, 2016

@feross

These have been deprecated since Apr 27, 2013, and the plan was to remove them in "node v0.13".

buffer.get(index) is superseded by buffer[index]. buffer.set(index, value) is superseded by buffer[index] = value.

These have never been documented at any point in node's history.

PR-URL: nodejs#4594 Fixes: nodejs#4587 Reviewed-By: Colin Ihrig cjihrig@gmail.com Reviewed-By: Trevor Norris trev.norris@gmail.com Reviewed-By: Brian White mscdex@mscdex.net Reviewed-By: Roman Reiss me@silverwind.io

jasnell added a commit that referenced this pull request

Apr 26, 2016

@jasnell

The following significant (semver-major) changes have been made since the previous Node v5.0.0 release.

jasnell added a commit that referenced this pull request

Apr 26, 2016

@jasnell

The following significant (semver-major) changes have been made since the previous Node v5.0.0 release.

jasnell added a commit that referenced this pull request

Apr 26, 2016

@jasnell

The following significant (semver-major) changes have been made since the previous Node v5.0.0 release.

jasnell added a commit that referenced this pull request

Apr 26, 2016

@jasnell

The following significant (semver-major) changes have been made since the previous Node v5.0.0 release.

jasnell added a commit that referenced this pull request

Apr 26, 2016

@jasnell

The following significant (semver-major) changes have been made since the previous Node v5.0.0 release.

Labels

buffer

Issues and PRs related to the buffer subsystem.

semver-major

PRs that contain breaking changes and should be released in the next major version.