Bump packages for release

This commit is contained in:
Frederico Maia Arantes
2022-03-14 12:12:19 -03:00
parent 87d03ed0ad
commit 7fc0c0055b
33 changed files with 45 additions and 32 deletions

View File

@@ -5,7 +5,8 @@
* Typescript `4.5.4` upgrade
* New core package: `accounts-2fa`
* Support for 2FA in `accounts-password` and `accounts-passwordless`
* PostCSS plugins are run by `standard-minifier-css` if the app has PostCSS configured
* PostCSS's plugins are run by `standard-minifier-css` if the app has PostCSS configured
* App skeletons and test packages were updated to `meteor-node-stubs@1.2.0`
#### Breaking Changes
@@ -80,6 +81,9 @@ Read our [Migration Guide](https://guide.meteor.com/2.7-migration.html) for this
* `modules-runtime@0.13.0`
- Fix some npm modules being imported as an empty object. [PR](https://github.com/meteor/meteor/pull/11954), [Issue 1](https://github.com/meteor/meteor/issues/11900), [Issue 2](https://github.com/meteor/meteor/issues/11853).
* `meteor-node-stubs@1.2`
- Adds support for [node:](https://nodejs.org/api/esm.html#node-imports) imports.
#### Independent Releases
## v2.6.1, 2022-02-18

View File

@@ -7,6 +7,15 @@ Meteor `2.7` introduce the new `accounts-2fa` package, support for TailwindCSS 3
The above being said, there are a few items that you should do to have the latest CSS minifier in your project.
<h3 id="new-css-minifier">Update meteor-node-stubs</h3>
As we added support for [node:](https://nodejs.org/api/esm.html#node-imports) imports, you need to
update `meteor-node-stubs` to its latest version:
```bash
meteor npm install meteor-node-stubs@latest
```
<h3 id="new-css-minifier">Support for PostCSS</h3>
Starting from this version of Meteor (and 1.8.0 of `standard-minifier-css`), Meteor will run PostCSS plugins if you have them configured. If you are using `juliancwirko:postcss` as your css minifier, it is recommended to migrate to using `standard-minifier-css`. For most apps, this will only requiring switching which minifier the app uses:

View File

@@ -1,6 +1,6 @@
{
"name": "meteor-node-stubs",
"version": "1.1.0",
"version": "1.2.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -2,7 +2,7 @@
"name": "meteor-node-stubs",
"author": "Ben Newman <ben@meteor.com>",
"description": "Stub implementations of Node built-in modules, a la Browserify",
"version": "1.1.0",
"version": "1.2.0",
"main": "index.js",
"license": "MIT",
"scripts": {

View File

@@ -1,5 +1,5 @@
Package.describe({
version: '1.0.0-rc270.0',
version: '1.0.0-rc270.3',
summary:
'Package used to enable two factor authentication through OTP protocol',
});

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: 'A user account system',
version: '2.2.2-rc270.0',
version: '2.2.2-rc270.3',
});
Package.onUse(api => {

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: "Common code for OAuth-based login services",
version: "1.4.1-rc270.0",
version: "1.4.1-rc270.3",
});
Package.onUse(api => {

View File

@@ -5,7 +5,7 @@ Package.describe({
// 2.2.x in the future. The version was also bumped to 2.0.0 temporarily
// during the Meteor 1.5.1 release process, so versions 2.0.0-beta.2
// through -beta.5 and -rc.0 have already been published.
version: '2.3.0-rc270.0',
version: '2.3.0-rc270.3',
});
Npm.depends({

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: 'No-password login/sign-up support for accounts',
version: '2.1.0-rc270.0',
version: '2.1.0-rc270.3',
});
Package.onUse(api => {

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: 'Unstyled version of login widgets',
version: '1.7.0-rc270.0',
version: '1.7.0-rc270.3',
});
Package.onUse(function(api) {

View File

@@ -1,7 +1,7 @@
Package.describe({
name: "babel-compiler",
summary: "Parser/transpiler for ECMAScript 2015+ syntax",
version: '7.9.0-rc270.0'
version: '7.9.0-rc270.3'
});
Npm.depends({

View File

@@ -1,6 +1,6 @@
Package.describe({
name: 'ecmascript',
version: '0.16.2-rc270.0',
version: '0.16.2-rc270.3',
summary: 'Compiler plugin that supports ES2015+ in all .js files',
documentation: 'README.md',
});

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: 'Extended and Extensible JSON library',
version: '1.1.2-rc270.0'
version: '1.1.2-rc270.3'
});
Package.onUse(function onUse(api) {

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: 'Send email messages',
version: '2.2.1-rc270.0',
version: '2.2.1-rc270.3',
});
Npm.depends({

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: "Facebook OAuth flow",
version: "1.11.0-rc270.0"
version: "1.11.0-rc270.3"
});
Package.onUse(api => {

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: 'GitHub OAuth flow',
version: '1.4.0-rc270.0'
version: '1.4.0-rc270.3'
});
Package.onUse(api => {

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: "Google OAuth flow",
version: "1.4.2-rc270.0",
version: "1.4.2-rc270.3",
});
Cordova.depends({

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: 'The Meteor command-line tool',
version: '2.7.0-rc.0',
version: '2.7.0-rc.3',
});
Package.includeTool();

View File

@@ -1,6 +1,6 @@
Package.describe({
name: "modules-runtime",
version: "0.13.0-rc270.0",
version: "0.13.0-rc270.3",
summary: "CommonJS module system",
git: "https://github.com/benjamn/install",
documentation: "README.md"

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: "JS simulation of MongoDB Decimal128 type",
version: '0.1.3-rc270.0'
version: '0.1.3-rc270.3'
});
Npm.depends({

View File

@@ -1,6 +1,6 @@
Package.describe({
name: 'react-fast-refresh',
version: '0.2.3-rc270.0',
version: '0.2.3-rc270.3',
summary: 'Automatically update React components with HMR',
documentation: 'README.md',
devOnly: true,

View File

@@ -1,6 +1,6 @@
Package.describe({
name: 'standard-minifier-css',
version: '1.8.0-rc270.0',
version: '1.8.0-rc270.3',
summary: 'Standard css minifier used with Meteor apps by default.',
documentation: 'README.md'
});

View File

@@ -1,6 +1,6 @@
Package.describe({
name: 'typescript',
version: '4.5.4-rc270.0',
version: '4.5.4-rc270.3',
summary:
'Compiler plugin that compiles TypeScript and ECMAScript in .ts and .tsx files',
documentation: 'README.md',

View File

@@ -1,6 +1,6 @@
{
"track": "METEOR",
"version": "2.7-rc.0",
"version": "2.7-rc.3",
"recommended": false,
"official": false,
"description": "Meteor experimental release"

View File

@@ -13,7 +13,7 @@
"apollo-server-express": "^3.4.0",
"express": "^4.17.1",
"graphql": "^15.6.1",
"meteor-node-stubs": "^1.1.0",
"meteor-node-stubs": "^1.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},

View File

@@ -9,7 +9,7 @@
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"meteor-node-stubs": "^1.1.0",
"meteor-node-stubs": "^1.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},

View File

@@ -9,7 +9,7 @@
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"meteor-node-stubs": "^1.1.0",
"meteor-node-stubs": "^1.2.0",
"svelte": "^3.46.4"
},
"meteor": {

View File

@@ -9,7 +9,7 @@
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"meteor-node-stubs": "^1.1.0",
"meteor-node-stubs": "^1.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},

View File

@@ -9,7 +9,7 @@
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"meteor-node-stubs": "^1.1.0",
"meteor-node-stubs": "^1.2.0",
"vue": "^2.6.14",
"vue-meteor-tracker": "^2.0.0-beta.5"
},

View File

@@ -6,7 +6,7 @@
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"meteor-node-stubs": "^1.1.0",
"meteor-node-stubs": "^1.2.0",
"puppeteer": "^2.1.1"
},
"meteor": {

View File

@@ -10,7 +10,7 @@
"acorn": "^7.4.1",
"arson": "^0.2.6",
"jquery": "^3.6.0",
"meteor-node-stubs": "^1.1.0",
"meteor-node-stubs": "^1.2.0",
"moment": "^2.29.1",
"optimism": "^0.11.5",
"private": "^0.1.8",

View File

@@ -8,7 +8,7 @@
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"meteor-node-stubs": "^1.1.0",
"meteor-node-stubs": "^1.2.0",
"puppeteer": "^10.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"

View File

@@ -7,7 +7,7 @@
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"meteor-node-stubs": "^1.1.0",
"meteor-node-stubs": "^1.2.0",
"puppeteer": "^2.1.1"
},
"meteor": {