Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
This release adds many security features. It's recommended that admins
upgrade as soon as possible.

Please note that while we're not doing so _yet_, we're planning to
deprecate running under Node.js 0.10 and 0.12 very soon. Additionally,
upgrading to Node.js 4.x early will enable the new, better XSS scrubber
- _however_, be aware that pump.io is far less tested under Node.js 4.x
and you are likely to run into more bugs than you would under 0.10 or
0.12.

See #1184 for details.

* [API] Send the `Content-Length` header in Dialback requests
* Add support for [LibreJS][librejs] (#1058)
* Node.js 4.x is officially supported (#1184)
* Browser MIME type sniffing is disabled via `X-Content-Type-Options:
  nosniff` ([#1184][security-headers])
* Protect some versions of Internet Explorer from a confused deputy
  attack via `X-Download-Options: noopen` ([#1184][security-headers])
* Make sure Internet Explorer's built-in XSS protection is as secure as
  possible with `X-XSS-Protection: 1;
  mode=block` ([#1184][security-headers])
* Versions of Internet Explorer the XSS scrubber can't protect are
  presented with a security error instead of any content (#1184)
* Clickjacking is prevented via `X-Frame-Options: DENY` header (in
  addition to Content Security Policy) ([#1184][security-headers])
* A `Content-Security-Policy` header is sent with every response (#1184)
  * Scripts are forbidden from everywhere except the application domain
    and (if CDNs are enabled) `cdnjs.cloudflare.com` and
    `ajax.googleapis.com`
  * Styles are forbidden from everywhere except the application domain
    and inline styles
  * `<object>`, `<embed>`, and `<applet>`, as well as all plugins, are
    forbidden * Embedding the web UI via `<frame>`, `<iframe>`,
    `<object>`, `<embed>`, and `<applet>` is forbidden
  * Connecting to anything other than the application domain via
    `XMLHttpRequest`, WebSockets or `EventSource` is forbidden
  * Loading Web Workers or nested browsing contexts (i.e. `<frame>`,
    `<iframe>`) is forbidden except from the application domain
  * Fonts are forbidden from everywhere except the application domain
  * Form submission is limited to the application domain

* [API] Don't return `displayName` properties if they're empty (#1149)
* Upgraded from Connect 1.x to Connect 2.x
* Upgraded various minor dependencies
* All files pass style checking and most pass JSHint
* Add links to the user guide on the homepage and welcome
  message (#1125)
* Add a new XSS scrubber implementation (#1184)
  * DOMPurify-based scrubber is used on Node.js 4.x or better
  * Otherwise, a more intrusive, less precise one is used

* Fix a crash upon access of an activity without any replies (#1135)
* Disable registration link if registration is disabled (#853)
* `package.json` now uses a valid SPDX license identifier (#1112)
  • Loading branch information
strugee committed Aug 27, 2016
1 parent d629267 commit e07e33f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pump.io follows [Semantic Versioning][semver].

## 1.0.0 - 2016-08-26 [unreleased]
## 1.0.0 - 2016-08-26

This release adds many security features. It's recommended that admins upgrade as soon as possible.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pump.io

Version 0.3.0
Version 1.0.0

This is pump.io. It's a stream server that does most of what people
really want from a social network.
Expand All @@ -9,7 +9,7 @@ really want from a social network.

## License

Copyright 2011-2014, E14N https://e14n.com/
Copyright 2011-2016, E14N https://e14n.com/ and contributors

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion lib/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
// See the License for the specific language governing permissions and
// limitations under the License.

module.exports.version = "0.3.0";
module.exports.version = "1.0.0";
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pump.io",
"preferGlobal": "true",
"homepage": "http://pump.io/",
"version": "0.3.0",
"version": "1.0.0",
"author": "Evan Prodromou <[email protected]>",
"devDependencies": {
"jscs": "^3.0.3",
Expand Down

0 comments on commit e07e33f

Please sign in to comment.