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

Release 2.3.5 #11580

Merged
merged 12 commits into from
Aug 12, 2021
44 changes: 44 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,24 @@

* `oauth1@1.4.1`
- Allow usage of `http` package both v1 and v2 for backward compatibility
- Blaze weak dependency updated to v2.5.0

## v2.3.5, 2021-08-12

#### Highlights

* Updated Node.js per the [August security release](https://nodejs.org/en/blog/vulnerability/aug-2021-security-releases/)
* Includes same improvements as in Meteor v2.2.3
- Typescript updated to [v4.3.5](https://github.com/Microsoft/TypeScript/releases/tag/v4.3.5)
- `@meteorjs/babel@7.12.0`

#### Meteor Version Release

* `meteor-tool@2.3.5`
- Node.js updated to [v14.17.5](https://nodejs.org/en/blog/release/v14.17.5/)
- Typescript updated to [v4.3.5](https://github.com/Microsoft/TypeScript/releases/tag/v4.3.5)
- `@meteorjs/babel@7.12.0`
- Fix broken source maps in VSCode - [PR](https://github.com/meteor/meteor/pull/11584)

## v2.3.4, 2021-08-03

Expand Down Expand Up @@ -318,6 +336,32 @@
* `react-fast-refresh@0.1.1`
- Fixed the package to work in IE11

## v2.2.3, 2021-08-12

#### Highlights

* Security update to Node.js [12.22.5](https://nodejs.org/en/blog/release/v12.22.5/)
* Typescript updated to [v4.3.5](https://github.com/Microsoft/TypeScript/releases/tag/v4.3.5)

#### Meteor Version Release

* `meteor-tool@2.3.3`
- Updated Node.js to 12.22.5 per [Node security update](https://nodejs.org/en/blog/vulnerability/aug-2021-security-releases/)
- Typescript updated to [v4.3.5](https://github.com/Microsoft/TypeScript/releases/tag/v4.3.5)
- `@meteorjs/babel@7.12.0`

* `@meteorjs/babel@7.12.0` && `@meteorjs/babel@7.13.0`
- Dependencies updated to their latest versions

* `babel-compile@7.7.0`
- `@meteorjs/babel@7.12.0`

* `ecmascript@0.15.3`
- Typescript and Babel version bump

* `typescript@4.3.5`
- [`typescript@4.3.5`](https://github.com/Microsoft/TypeScript/releases/tag/v4.3.5)

## v2.2.2, 2021-08-02

#### Highlights
Expand Down
2 changes: 1 addition & 1 deletion meteor
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

BUNDLE_VERSION=14.17.4.2
BUNDLE_VERSION=14.17.5.0

# OS Check. Put here because here is where we download the precompiled
# bundles that are arch specific.
Expand Down
491 changes: 248 additions & 243 deletions packages/babel-compiler/.npm/package/npm-shrinkwrap.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/babel-compiler/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Package.describe({
// isn't possible because you can't publish a non-recommended
// release with package versions that don't have a pre-release
// identifier at the end (eg, -dev)
version: '7.6.2'
version: '7.7.0'
});

Npm.depends({
'@meteorjs/babel': '7.11.1',
'@meteorjs/babel': '7.13.0',
'json5': '2.1.1'
});

Expand Down
2 changes: 1 addition & 1 deletion packages/ecmascript/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'ecmascript',
version: '0.15.2',
version: '0.15.3',
summary: 'Compiler plugin that supports ES2015+ in all .js files',
documentation: 'README.md'
});
Expand Down
2 changes: 1 addition & 1 deletion packages/ecmascript/transpilation-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Tinytest.add("ecmascript - transpilation - class methods", (test) => {
test.isTrue(contains(output, 'Foo.staticMethod = function staticMethod('));
test.isTrue(contains(output,
'.prototypeMethod = function prototypeMethod('));
test.isTrue(contains(output, '[computedMethod] = function ('));
test.isTrue(contains(output, '[_computedMethod] = function ('));
Copy link
Collaborator

Choose a reason for hiding this comment

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

Was this just breaking tests and not actual code?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

As far as I can see yes. I will look if I can find something relevant in the changelogs, but from what I have been running the code and other tests there weren't any adverse effects.
🤔 Not even as far as I have tested in production build.

test.isFalse(contains(output, 'createClass'));
});

Expand Down
2 changes: 1 addition & 1 deletion packages/meteor-tool/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
summary: "The Meteor command-line tool",
version: '2.3.4'
version: '2.3.5'
});

Package.includeTool();
2 changes: 1 addition & 1 deletion packages/typescript/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: "typescript",
version: "4.3.2",
version: "4.3.5",
summary: "Compiler plugin that compiles TypeScript and ECMAScript in .ts and .tsx files",
documentation: "README.md"
});
Expand Down
2 changes: 1 addition & 1 deletion scripts/admin/meteor-release-experimental.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"track": "METEOR",
"version": "2.3.3-rc.0",
"version": "2.3.5-rc.0",
"recommended": false,
"official": false,
"description": "Meteor"
Expand Down
2 changes: 1 addition & 1 deletion scripts/admin/meteor-release-official.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"track": "METEOR",
"version": "2.3.4",
"version": "2.3.5",
"recommended": false,
"official": true,
"description": "The Official Meteor Distribution"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-dev-bundle-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -u

UNAME=$(uname)
ARCH=$(uname -m)
NODE_VERSION=14.17.4
NODE_VERSION=14.17.5
MONGO_VERSION_64BIT=4.4.4
MONGO_VERSION_32BIT=3.2.22
NPM_VERSION=6.14.13
Expand Down
4 changes: 2 additions & 2 deletions scripts/dev-bundle-tool-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ var packageJson = {
pacote: "https://github.com/meteor/pacote/tarball/a81b0324686e85d22c7688c47629d4009000e8b8",
"node-gyp": "8.0.0",
"node-pre-gyp": "0.15.0",
typescript: "4.3.2",
"@meteorjs/babel": "7.11.1",
typescript: "4.3.5",
"@meteorjs/babel": "7.13.0",
// Keep the versions of these packages consistent with the versions
// found in dev-bundle-server-package.js.
"meteor-promise": "0.9.0",
Expand Down