From 4654adbe7ee21e48f1965f2e8a7bd6f9b08cac5b Mon Sep 17 00:00:00 2001 From: Daniel Dornhardt Date: Wed, 4 Oct 2023 16:10:50 +0300 Subject: [PATCH 01/16] Allow for await-able autoruns by adding firstRunPromise to computation objects. --- packages/tracker/tracker.js | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/packages/tracker/tracker.js b/packages/tracker/tracker.js index 5c59a5c34e..f2138591f1 100644 --- a/packages/tracker/tracker.js +++ b/packages/tracker/tracker.js @@ -196,6 +196,27 @@ Tracker.Computation = class Computation { this._onError = onError; this._recomputing = false; + /** + * Computation.firstRunPromise will be set to the result of the call of the autorun function after the initial computation has been completed. + * If the autorun function is an async function, it'll then contain its promise, thus making the completion of the execution + * await-able. + * + * That allows us to manually synchronize autoruns like this: + * + * await Tracker.autorun(async () => { + * await Meteor.userAsync(); + * (... more async code...) + * }).firstRunPromise; + * + * await Tracker.autorun(async () => { + * await asyncSomeOrOther(); + * (... more async code...) + * }).firstRunPromise; + * + * // ta-daa! We'll get here only after both the autorun functions will have returned & executed in their entirety. + */ + this.firstRunPromise = undefined; + var errored = true; try { this._compute(); @@ -297,10 +318,18 @@ Tracker.Computation = class Computation { var previousInCompute = inCompute; inCompute = true; + try { - Tracker.withComputation(this, () => { + // In case of async functions, the result of this function will contain the promise of the autorun function + // & make autoruns await-able. + const firstRunPromise = Tracker.withComputation(this, () => { withNoYieldsAllowed(this._func)(this); - }); + }) + // We'll store the firstRunPromise on the computation so it can be awaited by the callers, but only + // during the first run. We don't want things to get mixed up. + if (this.firstRun) { + this.firstRunPromise = firstRunPromise; + } } finally { inCompute = previousInCompute; } From 3a8e09a27568a5fa83b2d06b97b0f83c2f7a5af4 Mon Sep 17 00:00:00 2001 From: harryadel Date: Thu, 12 Oct 2023 17:59:24 +0300 Subject: [PATCH 02/16] Apply @radekmie suggestions --- docs/source/api/tracker.md | 20 ++++++++++++++++++++ packages/tracker/tracker.d.ts | 4 ++++ packages/tracker/tracker.js | 23 ++++++----------------- packages/tracker/tracker_tests.js | 24 ++++++++++++++++++++++++ 4 files changed, 54 insertions(+), 17 deletions(-) diff --git a/docs/source/api/tracker.md b/docs/source/api/tracker.md index 6e2cf2dee2..8ba164eb71 100644 --- a/docs/source/api/tracker.md +++ b/docs/source/api/tracker.md @@ -314,6 +314,26 @@ recomputed at flush time. This property is a convenience to support the common pattern where a computation has logic specific to the first run. +{% apibox "Tracker.Computation#firstRunPromise" %} + +`Computation.firstRunPromise` will be set to the result of the call of the autorun function after the initial computation has been completed. If the autorun function is an async function, it'll then contain its promise, thus making the completion of the execution await-able. That allows us to manually synchronize autoruns like this: + +```js + +await Tracker.autorun(async () => { + await Meteor.userAsync(); + (...more async code...) +}).firstRunPromise; + +await Tracker.autorun(async () => { + await asyncSomeOrOther(); + (...more async code...) +}).firstRunPromise; + +// ta-daa! We'll get here only after both the autorun functions will have returned & executed in their entirety. + + +```

Tracker.Dependency

A Dependency represents an atomic unit of reactive data that a diff --git a/packages/tracker/tracker.d.ts b/packages/tracker/tracker.d.ts index 8e71bcc333..01ba6933b5 100644 --- a/packages/tracker/tracker.d.ts +++ b/packages/tracker/tracker.d.ts @@ -16,6 +16,10 @@ export namespace Tracker { * True during the initial run of the computation at the time `Tracker.autorun` is called, and false on subsequent reruns and at other times. */ firstRun: boolean; + /** + * Forces autorun blocks to be executed in synchronous-looking order by storing the value autorun promise thus making it awaitable. + */ + firstRunPromise: Promise /** * Invalidates this computation so that it will be rerun. */ diff --git a/packages/tracker/tracker.js b/packages/tracker/tracker.js index f2138591f1..cb5b876d2c 100644 --- a/packages/tracker/tracker.js +++ b/packages/tracker/tracker.js @@ -197,23 +197,12 @@ Tracker.Computation = class Computation { this._recomputing = false; /** - * Computation.firstRunPromise will be set to the result of the call of the autorun function after the initial computation has been completed. - * If the autorun function is an async function, it'll then contain its promise, thus making the completion of the execution - * await-able. - * - * That allows us to manually synchronize autoruns like this: - * - * await Tracker.autorun(async () => { - * await Meteor.userAsync(); - * (... more async code...) - * }).firstRunPromise; - * - * await Tracker.autorun(async () => { - * await asyncSomeOrOther(); - * (... more async code...) - * }).firstRunPromise; - * - * // ta-daa! We'll get here only after both the autorun functions will have returned & executed in their entirety. + * @summary Forces autorun blocks to be executed in synchronous-looking order by storing the value autorun promise thus making it awaitable. + * @locus Client + * @memberOf Tracker.Computation + * @instance + * @name firstRunPromise + * @returns {Promise} */ this.firstRunPromise = undefined; diff --git a/packages/tracker/tracker_tests.js b/packages/tracker/tracker_tests.js index 78480b7e97..ed15701361 100644 --- a/packages/tracker/tracker_tests.js +++ b/packages/tracker/tracker_tests.js @@ -630,6 +630,30 @@ Tinytest.addAsync('tracker - async function - stepped', async function (test) { test.equal(count, limit, 'after resolve'); }); + +Tinytest.addAsync('tracker - async function - synchronize', async test => { + let counter = 0 + await Tracker.autorun(async () => { + test.equal(counter, 0); + counter += 1; + test.equal(counter, 1); + await Promise.resolve(); + test.equal(counter, 1); + counter *= 2; + test.equal(counter, 2); + }).firstRunPromise; + + await Tracker.autorun(async () => { + test.equal(counter, 2); + counter += 1; + test.equal(counter, 3); + await Promise.resolve(); + test.equal(counter, 3); + counter *= 2; + test.equal(counter, 6); + }).firstRunPromise; +}) + Tinytest.add('computation - #flush', function (test) { var i = 0, j = 0, d = new Tracker.Dependency; var c1 = Tracker.autorun(function () { From ff615a5fafac584d86ea24e95949bef086c06403 Mon Sep 17 00:00:00 2001 From: harryadel Date: Sun, 19 Nov 2023 21:15:12 +0200 Subject: [PATCH 03/16] [tracker] add then and catch --- packages/tracker/tracker.js | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/packages/tracker/tracker.js b/packages/tracker/tracker.js index cb5b876d2c..0ce41d3fe5 100644 --- a/packages/tracker/tracker.js +++ b/packages/tracker/tracker.js @@ -144,7 +144,7 @@ var constructingComputation = false; * computation. * @instancename computation */ -Tracker.Computation = class Computation { +Tracker.Computation = class Computation { constructor(f, parent, onError) { if (! constructingComputation) throw new Error( @@ -206,6 +206,21 @@ Tracker.Computation = class Computation { */ this.firstRunPromise = undefined; + /** + * + * @param {*} onResolved + * @param {*} onRejected + * @returns + */ + this.then = function (onResolved, onRejected) { + return this.firstRunPromise.then(onResolved, onRejected); + }; + + + this.catch = function (onRejected) { + return this.firstRunPromise.catch(onRejected) + }; + var errored = true; try { this._compute(); @@ -578,21 +593,18 @@ Tracker._runFlush = function (options) { * thrown. Defaults to the error being logged to the console. * @returns {Tracker.Computation} */ -Tracker.autorun = function (f, options) { +Tracker.autorun = function (f, options = {}) { if (typeof f !== 'function') throw new Error('Tracker.autorun requires a function argument'); - options = options || {}; - constructingComputation = true; - var c = new Tracker.Computation( - f, Tracker.currentComputation, options.onError); + var c = new Tracker.Computation(f, Tracker.currentComputation, options.onError); if (Tracker.active) Tracker.onInvalidate(function () { c.stop(); }); - + // console.log("C - Computation: ", c) return c; }; From f2c98ae9307c9e014127d8d05d4028c44e438936 Mon Sep 17 00:00:00 2001 From: harryadel Date: Wed, 22 Nov 2023 14:36:52 +0200 Subject: [PATCH 04/16] [tracker] await then & catch --- packages/tracker/tracker.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/tracker/tracker.js b/packages/tracker/tracker.js index 0ce41d3fe5..b799216812 100644 --- a/packages/tracker/tracker.js +++ b/packages/tracker/tracker.js @@ -212,13 +212,13 @@ Tracker.Computation = class Computation { * @param {*} onRejected * @returns */ - this.then = function (onResolved, onRejected) { - return this.firstRunPromise.then(onResolved, onRejected); + this.then = async function (onResolved, onRejected) { + await this.firstRunPromise.then(onResolved, onRejected); }; - this.catch = function (onRejected) { - return this.firstRunPromise.catch(onRejected) + this.catch = async function (onRejected) { + await this.firstRunPromise.catch(onRejected) }; var errored = true; @@ -604,7 +604,7 @@ Tracker.autorun = function (f, options = {}) { Tracker.onInvalidate(function () { c.stop(); }); - // console.log("C - Computation: ", c) + return c; }; From e41c8ecf9e2a2dfdcbbbf10959cc3337770f689b Mon Sep 17 00:00:00 2001 From: Harry Adel Date: Wed, 29 Nov 2023 00:43:39 +0200 Subject: [PATCH 05/16] Update packages/tracker/tracker.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Radosław Miernik --- packages/tracker/tracker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tracker/tracker.js b/packages/tracker/tracker.js index b799216812..f06d7a4bc4 100644 --- a/packages/tracker/tracker.js +++ b/packages/tracker/tracker.js @@ -144,7 +144,7 @@ var constructingComputation = false; * computation. * @instancename computation */ -Tracker.Computation = class Computation { +Tracker.Computation = class Computation { constructor(f, parent, onError) { if (! constructingComputation) throw new Error( From 2e32f1cc5931057f781462a76a44b9ba19fea7ed Mon Sep 17 00:00:00 2001 From: harryadel Date: Wed, 29 Nov 2023 11:55:59 +0200 Subject: [PATCH 06/16] [tracker] Add a test without firstRunPromise --- packages/tracker/tracker_tests.js | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/packages/tracker/tracker_tests.js b/packages/tracker/tracker_tests.js index ed15701361..498b756bf7 100644 --- a/packages/tracker/tracker_tests.js +++ b/packages/tracker/tracker_tests.js @@ -297,7 +297,7 @@ Tinytest.add("tracker - lifecycle", function (test) { test.equal(c, Tracker.currentComputation); test.equal(c.stopped, false); test.equal(c.invalidated, false); - test.equal(c.firstRun, firstRun); + test.equal(c.firstRun, firstRun); Tracker.onInvalidate(makeCb()); // 1, 6, ... Tracker.afterFlush(makeCb()); // 2, 7, ... @@ -632,6 +632,30 @@ Tinytest.addAsync('tracker - async function - stepped', async function (test) { Tinytest.addAsync('tracker - async function - synchronize', async test => { + let counter = 0; + + await Tracker.autorun(async () => { + test.equal(counter, 0); + counter += 1; + test.equal(counter, 1); + await Promise.resolve(); + test.equal(counter, 1); + counter *= 2; + test.equal(counter, 2); + }); + + await Tracker.autorun(async () => { + test.equal(counter, 2); + counter += 1; + test.equal(counter, 3); + await Promise.resolve(); + test.equal(counter, 3); + counter *= 2; + test.equal(counter, 6); + }); +}) + +Tinytest.addAsync('tracker - async function - synchronize - firstRunPromise', async test => { let counter = 0 await Tracker.autorun(async () => { test.equal(counter, 0); From a30c1319760ff4778f849eddc97f48988252c42a Mon Sep 17 00:00:00 2001 From: harryadel Date: Wed, 29 Nov 2023 11:58:14 +0200 Subject: [PATCH 07/16] [tracker] attach methods without the use of 'this' --- packages/tracker/tracker.js | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/packages/tracker/tracker.js b/packages/tracker/tracker.js index f06d7a4bc4..a5f2c8b76c 100644 --- a/packages/tracker/tracker.js +++ b/packages/tracker/tracker.js @@ -206,21 +206,6 @@ Tracker.Computation = class Computation { */ this.firstRunPromise = undefined; - /** - * - * @param {*} onResolved - * @param {*} onRejected - * @returns - */ - this.then = async function (onResolved, onRejected) { - await this.firstRunPromise.then(onResolved, onRejected); - }; - - - this.catch = async function (onRejected) { - await this.firstRunPromise.catch(onRejected) - }; - var errored = true; try { this._compute(); @@ -232,6 +217,22 @@ Tracker.Computation = class Computation { } } + + /** + * + * @param {*} onResolved + * @param {*} onRejected + * @returns + */ + then(onResolved, onRejected) { + return this.firstRunPromise.then(onResolved, onRejected); + }; + + + catch(onRejected) { + return this.firstRunPromise.catch(onRejected) + }; + // http://docs.meteor.com/#computation_oninvalidate /** From 888892501eb337d250d35c7ccf2279026cb06d41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Miernik?= Date: Wed, 29 Nov 2023 22:36:55 +0100 Subject: [PATCH 08/16] Fixed missing firstRunPromise. --- packages/tracker/tracker.js | 6 +++--- packages/tracker/tracker_tests.js | 11 +++++------ 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/packages/tracker/tracker.js b/packages/tracker/tracker.js index a5f2c8b76c..84a9354bf5 100644 --- a/packages/tracker/tracker.js +++ b/packages/tracker/tracker.js @@ -328,12 +328,12 @@ Tracker.Computation = class Computation { // In case of async functions, the result of this function will contain the promise of the autorun function // & make autoruns await-able. const firstRunPromise = Tracker.withComputation(this, () => { - withNoYieldsAllowed(this._func)(this); - }) + return withNoYieldsAllowed(this._func)(this); + }); // We'll store the firstRunPromise on the computation so it can be awaited by the callers, but only // during the first run. We don't want things to get mixed up. if (this.firstRun) { - this.firstRunPromise = firstRunPromise; + this.firstRunPromise = Promise.resolve(firstRunPromise); } } finally { inCompute = previousInCompute; diff --git a/packages/tracker/tracker_tests.js b/packages/tracker/tracker_tests.js index 498b756bf7..8c93790bb4 100644 --- a/packages/tracker/tracker_tests.js +++ b/packages/tracker/tracker_tests.js @@ -630,15 +630,14 @@ Tinytest.addAsync('tracker - async function - stepped', async function (test) { test.equal(count, limit, 'after resolve'); }); - Tinytest.addAsync('tracker - async function - synchronize', async test => { let counter = 0; - + await Tracker.autorun(async () => { test.equal(counter, 0); counter += 1; test.equal(counter, 1); - await Promise.resolve(); + await new Promise(resolve => setTimeout(resolve)); test.equal(counter, 1); counter *= 2; test.equal(counter, 2); @@ -648,7 +647,7 @@ Tinytest.addAsync('tracker - async function - synchronize', async test => { test.equal(counter, 2); counter += 1; test.equal(counter, 3); - await Promise.resolve(); + await new Promise(resolve => setTimeout(resolve)); test.equal(counter, 3); counter *= 2; test.equal(counter, 6); @@ -661,7 +660,7 @@ Tinytest.addAsync('tracker - async function - synchronize - firstRunPromise', as test.equal(counter, 0); counter += 1; test.equal(counter, 1); - await Promise.resolve(); + await new Promise(resolve => setTimeout(resolve)); test.equal(counter, 1); counter *= 2; test.equal(counter, 2); @@ -671,7 +670,7 @@ Tinytest.addAsync('tracker - async function - synchronize - firstRunPromise', as test.equal(counter, 2); counter += 1; test.equal(counter, 3); - await Promise.resolve(); + await new Promise(resolve => setTimeout(resolve)); test.equal(counter, 3); counter *= 2; test.equal(counter, 6); From cc07fe5d03b1093f15c4214e9363bc37499c2404 Mon Sep 17 00:00:00 2001 From: harryadel Date: Mon, 4 Dec 2023 15:08:09 +0200 Subject: [PATCH 09/16] [tracker] Remove joke because Gabriel is no fun :sob: --- docs/source/api/tracker.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/source/api/tracker.md b/docs/source/api/tracker.md index 5e28a560d2..fbb38316f8 100644 --- a/docs/source/api/tracker.md +++ b/docs/source/api/tracker.md @@ -318,8 +318,6 @@ await Tracker.autorun(async () => { (...more async code...) }).firstRunPromise; -// ta-daa! We'll get here only after both the autorun functions will have returned & executed in their entirety. - ```

Tracker.Dependency

From 8e90991e79e9eeef6d8e87d741960af0919db76d Mon Sep 17 00:00:00 2001 From: harryadel Date: Mon, 4 Dec 2023 15:11:48 +0200 Subject: [PATCH 10/16] [tracker] Use of firstRunPromise is not necessary paragraph --- docs/source/api/tracker.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/source/api/tracker.md b/docs/source/api/tracker.md index fbb38316f8..dc5aa5d19d 100644 --- a/docs/source/api/tracker.md +++ b/docs/source/api/tracker.md @@ -318,8 +318,25 @@ await Tracker.autorun(async () => { (...more async code...) }).firstRunPromise; +``` + +For a better developer experience `firstRunPromise` is automagically appended to your async `autorun` calls so you don't have to write them yourself. Meaning this also works: + +```js + +await Tracker.autorun(async () => { + await Meteor.userAsync(); + (...more async code...) +}); + +await Tracker.autorun(async () => { + await asyncSomeOrOther(); + (...more async code...) +}); ``` + +

Tracker.Dependency

A Dependency represents an atomic unit of reactive data that a From 0afa7df1fa4146f1f5dd26d867b32c19b7e8d4ad Mon Sep 17 00:00:00 2001 From: Gabriel Grubba <70247653+Grubba27@users.noreply.github.com> Date: Mon, 4 Dec 2023 15:33:44 -0300 Subject: [PATCH 11/16] Solve error in jsdoc generation --- docs/history.md | 125 ++++++++++++++++++++++++++++++++---- packages/tracker/tracker.js | 14 ++-- 2 files changed, 121 insertions(+), 18 deletions(-) diff --git a/docs/history.md b/docs/history.md index ca0be132a3..bf14873b9b 100644 --- a/docs/history.md +++ b/docs/history.md @@ -20,7 +20,7 @@ Hacktoberfest release! 🎉 * You can now set `DISABLE_SOCKJS_CORS=1` if you want to prevent SockJS from setting CORS headers. Do not set this option if you will have DDP clients from other origins connecting to the DDP server. [PR](https://github.com/meteor/meteor/pull/12789) -* Added guide on (how to prepare for Meteor 3.0 migration)[https://guide.meteor.com/prepare-meteor-3.0]. +* Added guide on [how to prepare for Meteor 3.0 migration](https://guide.meteor.com/prepare-meteor-3.0). * New DDP merge strategy `NO_MERGE_MULTI`, which is similar to `NO_MERGE`, but it does track whether a document is used by multiple publications. [PR](https://github.com/meteor/meteor/pull/12742) @@ -28,13 +28,28 @@ Hacktoberfest release! 🎉 * Added `Accounts.createUserAsync` into the client. +* Many packages had their underscore dependency removed. + +* Cordova has been updated to v12.0.1 for Android and v7.0.1 for iOS + +* `meteor create` command is now interactive! + #### Migration Steps -TODO +##### Android splash screen +If you have been using `splash-screen` for Cordova, you need to update your code as Android changed their splash screen API, +the `cordova-plugin-splashscreen` is now on `cordova-android` core, so we have removed the dependency from the `splash-screen` +package. As a result we are dropping the support for dark mode splash screen on Android. + +To create this now you need to create two themes on your `config.xml` file. + +> Note that it's still possible to have it by adding the according themes with App.appendToConfig and App.addResourceFile - but this is not something Meteor will do automagically right now. + +TODO: @matheusccastroo sample on how the new config should look and link to relevant Cordova docs ## Breaking Changes -N/A +* `splash-screen` package has removed the `cordova-plugin-splashscreen` dependency. See migration steps for more info. ## Docs @@ -49,19 +64,47 @@ N/A - Fixed build issue in Vue skeleton - Updated `source-map-support` - Fixed bugs in negated “in” and “instanceof” expressions + - Updated `semver` to v7.5.4 + - Updated `@meteorjs/babel` to v7.18.4 + - Cordova has been updated to v12.0.1 for Android and v7.0.1 for iOS + - `meteor create` command was re-made to be more interactive ## Meteor Version Release -* `accounts-base@2.2.8` +* `accounts-base@2.2.9` - Ensure that `onLogin` callback fires properly + - Indexes are now created asynchronously + +* `accounts-oauth@1.4.3` + - Indexes are now created asynchronously * `accounts-password@2.4.0` - Add `Accounts.createUserAsync` to the client, a promise-based version of `Accounts.createUser` + - Indexes are now created asynchronously -* `accounts-passwordless@2.1.3` +* `accounts-passwordless@2.1.4` - Fix #12401, ensure that user is found with ID + - Indexes are now created asynchronously -* `ddp-server@2.6.2`: +* `babel-compiler@7.10.5` + - Updated `@meteorjs/babel` to v7.18.4 + +* `boilerplate-generator@1.7.2` + - Removed Underscore dependency + +* `browser-policy-content@1.1.3` + - Removed Underscore dependency + +* `constraint-solver@1.2.1` + - Removed Underscore dependency + +* `crosswalk@1.7.2` + - Updated `cordova-plugin-crosswalk-webview` to v2.4.0 + - Deprecated the package + +* `ddp-rate-limiter@1.2.1` + - Removed Underscore dependency +* `ddp-server@2.7.0`: - Allow setting `DISABLE_SOCKJS_CORS` to prevent SockJS from setting CORS headers - Added new publication strategy `NO_MERGE_MULTI` @@ -72,30 +115,84 @@ N/A - Update `node-fetch` to version 1.6.12 - Update `whatwg-fetch` to version 3.6.17 -* `logging@1.3.2`: +* `logging@1.3.3`: - Added TS types -* `meteor@1.11.3`: +* `meteor@1.11.4`: - Improve TS types +* `modern-browsers@0.1.10` + - Added `appleMail` user agent to allow modern bundle on iPads + +* `mongo@1.16.8` + - Added deprecation messages into type definitions + - Fix ObjectIDs handling in oplogV2V1Converter + +* `modules@0.20.0` + - Updated `@meteorjs/babel` to v7.18.4 + * `npm-mongo@4.17.0`: - Bumped MongoDB driver to version 4.17 -* `react-fast-refresh@0.2.7`: +* `oauth@2.2.1` + - Indexes are now created asynchronously + - `remove` DB calls migrated to `removeAsync + +* `launch-screen@2.0.0` + - Removed `cordova-plugin-splashscreen` dependency + +* `logic-solver@2.0.8` + - Removed Underscore dependency + +* `package-version-parser@3.2.2` + - Updated `semver` to v7.5.4 + +* `react-fast-refresh@0.2.8`: - Updated `semver` to version 7.5.4 +* `service-configuration@1.3.2` + - Indexes are now created asynchronously + - Add types for ConfigError + +* `socket-stream-client@0.5.2` + - Removed Underscore dependency + +* `test-server-tests-in-console-once@1.0.12` + - Removed Underscore dependency + +* `tinytest@1.2.3` + - Removed Underscore dependency + +* `webapp@1.13.5` + - Updated `cordova-plugin-meteor-webapp` to v2.0.3 + - Updated `cookie-parser` to v1.4.6 + - Updated `send` to v0.18.0 + - Updated `stream-to-string` to v1.2.1 + - Updated `qs` to v6.11.2 + - Updated `@types/connect` to v3.4.38 + ## Independent releases * `google-oauth@1.4.4`: - Remove logging request/response in google_server +* NPM `@meteorjs/babel@7.18.4` + - Updated `@meteorjs/reify` to v0.24.1 + * NPM `@meteorjs/babel-preset-meteor@7.10.1` - Add Facebook in-app browser * NPM `cordova-plugin-meteor-webapp@2.0.2` - Fixed Android hot code push failing +* NPM `cordova-plugin-meteor-webapp@2.0.3` + - Fix pull manifest from correct url if parameter are used in baseurl + +* NPM `meteor-node-stubs@1.2.6` + - Update dependencies + - Deep update dependencies that were highlighted by `npm audit` + ## Contributors - [@StorytellerCZ](https://github.com/sponsors/StorytellerCZ) @@ -110,6 +207,12 @@ N/A - [@ebroder](https://github.com/ebroder) - [@BANSAL-NISHU](https://github.com/BANSAL-NISHU) - [@salmanhasni](https://github.com/salmanhasni) +- [@jdgjsag67251](https://github.com/jdgjsag67251) +- [@guncebektas](https://github.com/guncebektas) +- [@harryadel](https://github.com/harryadel) +- [@dd137](https://github.com/dd137) +- [@matheusccastroo](https://github.com/matheusccastroo) +- [@mr-loop-1](https://github.com/mr-loop-1) For making this great framework even better! @@ -225,10 +328,10 @@ for more information about the problems and issues you might find while migratin #### Internal changes -* `ddp-server@2.6.2`: +* `ddp-server@2.7.0`: - Updated livedata server test to be more easily debbuged. -* `mongo@1.16.7`: +* `mongo@1.16.8`: - Updated deprecated reference in Mongo package. #### Migration Steps diff --git a/packages/tracker/tracker.js b/packages/tracker/tracker.js index 84a9354bf5..2985a18ddb 100644 --- a/packages/tracker/tracker.js +++ b/packages/tracker/tracker.js @@ -219,16 +219,16 @@ Tracker.Computation = class Computation { /** - * - * @param {*} onResolved - * @param {*} onRejected - * @returns + * Resolves the firstRunPromise with the result of the autorun function. + * @param {*} onResolved + * @param {*} onRejected + * @returns{Promise Date: Mon, 4 Dec 2023 16:58:29 -0300 Subject: [PATCH 12/16] Adjusting typo --- docs/generators/changelog/versions/2.14.md | 14 +++++++------- docs/source/api/tracker.md | 12 ++++++------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/generators/changelog/versions/2.14.md b/docs/generators/changelog/versions/2.14.md index 4c11b74fb4..5652e03eac 100644 --- a/docs/generators/changelog/versions/2.14.md +++ b/docs/generators/changelog/versions/2.14.md @@ -25,15 +25,15 @@ Hacktoberfest release! 🎉 #### Migration Steps ##### Android splash screen -If you have been using `splash-screen` for Cordova, you need to update your code as Android changed their splash screen API, -the `cordova-plugin-splashscreen` is now on `cordova-android` core, so we have removed the dependency from the `splash-screen` +If you have been using `splash-screen` for Cordova, you need to update your code as Android changed their splash screen API, +the `cordova-plugin-splashscreen` is now on `cordova-android` core, so we have removed the dependency from the `splash-screen` package. As a result we are dropping the support for dark mode splash screen on Android. To create this now you need to create two themes on your `config.xml` file. -> Note that it's still possible to have it by adding the according themes with App.appendToConfig and App.addResourceFile - but this is not something Meteor will do automagically right now. +> Note that it's still possible to have it by adding the according themes with App.appendToConfig and App.addResourceFile - but this is not something Meteor will do automatically right now. -TODO: @matheusccastroo sample on how the new config should look and link to relevant Cordova docs +TODO: @matheusccastroo sample on how the new config should look and link to relevant Cordova docs ## Breaking Changes @@ -55,7 +55,7 @@ TODO: @matheusccastroo sample on how the new config should look and link to rele - Updated `semver` to v7.5.4 - Updated `@meteorjs/babel` to v7.18.4 - Cordova has been updated to v12.0.1 for Android and v7.0.1 for iOS - - `meteor create` command was re-made to be more interactive + - `meteor create` command was re-made to be more interactive ## Meteor Version Release @@ -113,7 +113,7 @@ TODO: @matheusccastroo sample on how the new config should look and link to rele - Added `appleMail` user agent to allow modern bundle on iPads * `mongo@get-version` - - Added deprecation messages into type definitions + - Added deprecation messages into type definitions - Fix ObjectIDs handling in oplogV2V1Converter * `modules@get-version` @@ -166,7 +166,7 @@ TODO: @matheusccastroo sample on how the new config should look and link to rele - Remove logging request/response in google_server * NPM `@meteorjs/babel@7.18.4` - - Updated `@meteorjs/reify` to v0.24.1 + - Updated `@meteorjs/reify` to v0.24.1 * NPM `@meteorjs/babel-preset-meteor@7.10.1` - Add Facebook in-app browser diff --git a/docs/source/api/tracker.md b/docs/source/api/tracker.md index dc5aa5d19d..c23fed63e1 100644 --- a/docs/source/api/tracker.md +++ b/docs/source/api/tracker.md @@ -80,7 +80,7 @@ If the initial run of an autorun throws an exception, the computation is automatically stopped and won't be rerun. ### Tracker.autorun and async callbacks -`Tracker.autorun` can accept an `async` callback function. +`Tracker.autorun` can accept an `async` callback function. To preserve reactivity for the reactive variables inside the async callback function, you must use a `Tracker.withComputation` call as described below: {% apibox "Tracker.withComputation" %} @@ -94,7 +94,7 @@ Tracker.autorun(async function example1(computation) { // Code after the first await looses Tracker.currentComputation: no reactivity. reactiveVar2.get(); // This won't trigger a rerun. - + // You can bring back reactivity with the Tracker.withCompuation wrapper: let users = await Tracker.withComputation(computation, () => Meteor.users.findAsync({}).fetch()); @@ -112,7 +112,7 @@ The `react-meteor-data` package uses `Tracker.withComputation` to make the `useT More can be seen [here](https://github.com/meteor/react-packages/tree/master/packages/react-meteor-data#maintaining-the-reactive-context) ### Using async callbacks in versions of Meteor prior to 2.10 -`Tracker.autorun` can accept an `async` callback function. +`Tracker.autorun` can accept an `async` callback function. However, the async call back function will only be dependent on reactive functions called prior to any called functions that return a promise. Example 1 - autorun `example1()` **is not** dependent on reactive changes to the `Meteor.users` collection. Because it is dependent on nothing reactive it will run only once: @@ -306,7 +306,7 @@ computation has logic specific to the first run. `Computation.firstRunPromise` will be set to the result of the call of the autorun function after the initial computation has been completed. If the autorun function is an async function, it'll then contain its promise, thus making the completion of the execution await-able. That allows us to manually synchronize autoruns like this: -```js +```js await Tracker.autorun(async () => { await Meteor.userAsync(); @@ -320,9 +320,9 @@ await Tracker.autorun(async () => { ``` -For a better developer experience `firstRunPromise` is automagically appended to your async `autorun` calls so you don't have to write them yourself. Meaning this also works: +For a better developer experience `firstRunPromise` is automatically appended to your async `autorun` calls so you don't have to write them yourself. Meaning this also works: -```js +```js await Tracker.autorun(async () => { await Meteor.userAsync(); From 0e9eaacff5be97f558915bf6ac62f58d46552eae Mon Sep 17 00:00:00 2001 From: Gabriel Grubba <70247653+Grubba27@users.noreply.github.com> Date: Tue, 5 Dec 2023 09:42:27 -0300 Subject: [PATCH 13/16] Update commandline.md with new flags and behaviors --- docs/source/commandline.md | 88 ++++++++++++++++++++------------------ 1 file changed, 47 insertions(+), 41 deletions(-) diff --git a/docs/source/commandline.md b/docs/source/commandline.md index 10a36a8daf..9381e02d83 100644 --- a/docs/source/commandline.md +++ b/docs/source/commandline.md @@ -33,7 +33,7 @@ required. This is the default command. Simply running `meteor` is the same as `meteor run`. -To pass additional options to Node.js use the `SERVER_NODE_OPTIONS` environment variable. E.g. for Windows PowerShell: +To pass additional options to Node.js use the `SERVER_NODE_OPTIONS` environment variable. E.g. for Windows PowerShell: `$env:SERVER_NODE_OPTIONS = '--inspect' | meteor run`. Or for Linux: `SERVER_NODE_OPTIONS=--inspect-brk meteor run`. To specify a port to listen on (instead of the default 3000), use `--port [PORT]`. @@ -43,6 +43,9 @@ For example: `meteor run --port 4000` will run the development server on `http://localhost:4000` and the development MongoDB instance on `mongodb://localhost:4001`. +To open your default browser you can pass the `--open` flag. +For example: `meteor run --open` + Run `meteor help run` to see the full list of options.

meteor debug

@@ -83,21 +86,24 @@ option to other `meteor` tool commands, such as `meteor run` and `meteor test-pa

meteor create app-name

-The command `meteor create app-name` is the default command for creating a new Meteor project. It creates a subdirectory -named `app-name` and copies a template app into it. You can pass an absolute or relative path. If you pass a relative +The command `meteor create app-name` is the default command for creating a new Meteor project. It creates a subdirectory +named `app-name` and copies a template app into it. You can pass an absolute or relative path. If you pass a relative path, it will be resolved relative to the current working directory. By default, it generates a React project. See the flags below to learn how you can generate different types of apps. +Using only `meteor create` will create a promt to help you choose the type of app you want to create, +giving you the options with the flags below. +

--apollo

-The command `meteor create --apollo app-name` creates a Meteor app with [React](https://react.dev/), -[Apollo](https://www.apollographql.com/) (GraphQL), and [MongoDB](https://www.mongodb.com/). To create a complete app, -including testing and deployment, follow the [React tutorial](https://react-tutorial.meteor.com/). To learn how to use +The command `meteor create --apollo app-name` creates a Meteor app with [React](https://react.dev/), +[Apollo](https://www.apollographql.com/) (GraphQL), and [MongoDB](https://www.mongodb.com/). To create a complete app, +including testing and deployment, follow the [React tutorial](https://react-tutorial.meteor.com/). To learn how to use Apollo, refer to the [GraphQL section](https://react-tutorial.meteor.com/simple-todos-graphql/). -Npm packages included: `@apollo/client`, `@apollo/server`, `@babel/runtime`, `body-parser`, `express`, +Npm packages included: `@apollo/client`, `@apollo/server`, `@babel/runtime`, `body-parser`, `express`, `graphql` `meteor-node-stubs`, `react`, `react-dom`. Meteor packages included: `meteor-base`, `mobile-experience`, `mongo`, `reactive-var`, `standard-minifier-css`, @@ -107,7 +113,7 @@ Meteor packages included: `meteor-base`, `mobile-experience`, `mongo`, `reactive

--bare

-The command `meteor create --bare app-name` creates an empty Meteor app with [Blaze](https://blazejs.org) and +The command `meteor create --bare app-name` creates an empty Meteor app with [Blaze](https://blazejs.org) and [MongoDB](https://www.mongodb.com/). To create a complete app, including testing and deployment, follow the [Blaze tutorial](https://blaze-tutorial.meteor.com/). @@ -119,22 +125,22 @@ Meteor packages included: `meteor-base`, `mobile-experience`, `mongo`, `reactive

--blaze

-The command `meteor create --blaze app-name` creates a Meteor app with [Blaze](https://blazejs.org) and +The command `meteor create --blaze app-name` creates a Meteor app with [Blaze](https://blazejs.org) and [MongoDB](https://www.mongodb.com/). To create a complete app, including testing and deployment, follow the [Blaze tutorial](https://blaze-tutorial.meteor.com/). Npm packages included: `@babel/runtime`, `meteor-node-stubs`, `jquery`. Meteor packages included: `meteor-base`, `mobile-experience`, `mongo`, `blaze-html-templates`, `jquery`, `reactive-var`, -`tracker`, `standard-minifier-css`, `standard-minifier-js`, `es5-shim`, `ecmascript`, `typescript`, `shell-server`, +`tracker`, `standard-minifier-css`, `standard-minifier-js`, `es5-shim`, `ecmascript`, `typescript`, `shell-server`, `hot-module-replacement`, `blaze-hot`.

--chakra-ui

-The command `meteor create --chakra-ui app-name` creates a Meteor app with [React](https://react.dev/), -[Chakra-UI](https://chakra-ui.com/), and [MongoDB](https://www.mongodb.com/). To create a complete app, including -testing and deployment, follow the [React tutorial](https://react-tutorial.meteor.com/). To learn how to use Chakra-UI, +The command `meteor create --chakra-ui app-name` creates a Meteor app with [React](https://react.dev/), +[Chakra-UI](https://chakra-ui.com/), and [MongoDB](https://www.mongodb.com/). To create a complete app, including +testing and deployment, follow the [React tutorial](https://react-tutorial.meteor.com/). To learn how to use Chakra-UI, refer to the [Simple Tasks](https://github.com/fredmaiaarantes/simpletasks) example. Npm packages included: `@babel/runtime`, `meteor-node-stubs`, `react`, `react-dom`, `@chakra-ui/icons`, `@chakra-ui/react`, `@emotion/react` @@ -147,10 +153,10 @@ Meteor packages included: `meteor-base`, `mobile-experience`, `mongo`, `reactive

--full

-The command `meteor create --full app-name` creates a Meteor app with [Blaze](https://blazejs.org) and +The command `meteor create --full app-name` creates a Meteor app with [Blaze](https://blazejs.org) and [MongoDB](https://www.mongodb.com/). It creates a more complete, imports-based project that closely matches the -[file structure](https://guide.meteor.com/structure.html#javascript-structure) recommended by the -[Meteor Guide](https://guide.meteor.com/). To create a complete app, including testing and deployment, follow the +[file structure](https://guide.meteor.com/structure.html#javascript-structure) recommended by the +[Meteor Guide](https://guide.meteor.com/). To create a complete app, including testing and deployment, follow the [Blaze tutorial](https://blaze-tutorial.meteor.com/). Npm packages included: `@babel/runtime`, `meteor-node-stubs`, `jquery`, `chai`. @@ -172,7 +178,7 @@ Meteor packages included: `meteor`, `standard-minifier-css`, `standard-minifier-

--package

-The command `meteor create --package package-name` creates a new package. If used in an existing app, it will create a +The command `meteor create --package package-name` creates a new package. If used in an existing app, it will create a package in the `packages` directory. Check the [Meteor Guide](https://guide.meteor.com/writing-atmosphere-packages.html) for more information on how to get started writing packages. @@ -180,7 +186,7 @@ for more information on how to get started writing packages.

--prototype

The command `meteor create --prototype app-name` creates a project with the prototype purpose packages (`autopublish` -and `insecure`). If you use them, you can change your collections quickly and create prototype apps very quickly. +and `insecure`). If you use them, you can change your collections quickly and create prototype apps very quickly. However, these packages are not supposed to be used in production. For more information about security, you can read our [security checklist](https://guide.meteor.com/security.html#checklist). @@ -189,28 +195,28 @@ It can be used with other flags that create apps, such as `--react`, `blaze`, or

--react

-The command `meteor create --react app-name` creates a Meteor app with [React](https://react.dev/) and -[MongoDB](https://www.mongodb.com/). It functions in the same way as if you don't use any flags. To create a complete +The command `meteor create --react app-name` creates a Meteor app with [React](https://react.dev/) and +[MongoDB](https://www.mongodb.com/). It functions in the same way as if you don't use any flags. To create a complete app, including testing and deployment, follow the [React tutorial](https://react-tutorial.meteor.com/). Npm packages included: `@babel/runtime`, `meteor-node-stubs`, `react`, `react-dom`. -Meteor packages included: `meteor-base`, `mobile-experience`, `mongo`, `reactive-var`, `standard-minifier-css`, +Meteor packages included: `meteor-base`, `mobile-experience`, `mongo`, `reactive-var`, `standard-minifier-css`, `standard-minifier-js`, `es5-shim`, `ecmascript`, `typescript`, `shell-server`, `hot-module-replacement`, `static-html`, `react-meteor-data`.

--release

-The command `meteor create app-name --release {meteor-version}` creates a Meteor app with the release specified in the -command. For instance, you can create a Meteor app with the `2.8` release using `meteor create app-name --release 2.8`. -By default, it generates a React app, but you can use it with other flags that create apps such as `--blaze`, +The command `meteor create app-name --release {meteor-version}` creates a Meteor app with the release specified in the +command. For instance, you can create a Meteor app with the `2.8` release using `meteor create app-name --release 2.8`. +By default, it generates a React app, but you can use it with other flags that create apps such as `--blaze`, `--svelte`, `--vue`, or `--typescript`.

--solid

-The command `meteor create --solid app-name` creates a Meteor app with [Solid](https://www.solidjs.com/), +The command `meteor create --solid app-name` creates a Meteor app with [Solid](https://www.solidjs.com/), [Vite](https://vitejs.dev/), and [MongoDB](https://www.mongodb.com/). You can see an example on the [meteor-solid-app](https://github.com/fredmaiaarantes/meteor-solid-app/releases/tag/milestone-2.0) repository. @@ -223,7 +229,7 @@ Meteor packages included: `meteor-base`, `mobile-experience`, `mongo`, `reactive

--svelte

-The command `meteor create --svelte app-name` creates a Meteor app with [Svelte](https://svelte.dev/) and +The command `meteor create --svelte app-name` creates a Meteor app with [Svelte](https://svelte.dev/) and [MongoDB](https://www.mongodb.com/). To create a complete app, including testing and deployment, follow the [Svelte tutorial](https://svelte-tutorial.meteor.com/). @@ -239,7 +245,7 @@ You can see an example on the [meteor-vite](https://github.com/JorgenVatle/meteo

--tailwind

-The command `meteor create --tailwind app-name` creates a Meteor app with [React](https://react.dev/), +The command `meteor create --tailwind app-name` creates a Meteor app with [React](https://react.dev/), [Tailwind CSS](https://tailwindcss.com), and [MongoDB](https://www.mongodb.com/). Npm packages included: `@babel/runtime`, `meteor-node-stubs`, `react`, `react-dom`, `autoprefixer`, `postcss`, `postcss-load-config`, `tailwindcss`. @@ -251,9 +257,9 @@ Meteor packages included: `meteor-base`, `mobile-experience`, `mongo`, `reactive

--typescript

-The command `meteor create --typescript app-name` creates a Meteor app with [React](https://react.dev/), -[TypeScript](https://www.typescriptlang.org/), and [MongoDB](https://www.mongodb.com/). Check the -[Meteor Guide](https://guide.meteor.com/build-tool.html#typescript) for more information about TypeScript and how to +The command `meteor create --typescript app-name` creates a Meteor app with [React](https://react.dev/), +[TypeScript](https://www.typescriptlang.org/), and [MongoDB](https://www.mongodb.com/). Check the +[Meteor Guide](https://guide.meteor.com/build-tool.html#typescript) for more information about TypeScript and how to use it with other UI frameworks. Npm packages included: `@babel/runtime`, `meteor-node-stubs`, `react`, `react-dom`, `@types/mocha`, `@types/node`, `@types/react`, `@types/react-dom`, `typescript`. @@ -265,8 +271,8 @@ Meteor packages included: `meteor-base`, `mobile-experience`, `mongo`, `reactive

--vue

-The command `meteor create --vue app-name` creates a Meteor app with [Vue 3](https://vuejs.org/), -[Tailwind CSS](https://tailwindcss.com), [Vite](https://vitejs.dev/), and [MongoDB](https://www.mongodb.com/). To +The command `meteor create --vue app-name` creates a Meteor app with [Vue 3](https://vuejs.org/), +[Tailwind CSS](https://tailwindcss.com), [Vite](https://vitejs.dev/), and [MongoDB](https://www.mongodb.com/). To create a complete app, including testing and deployment, follow the [Vue 3 tutorial](https://vue3-tutorial.meteor.com/). Npm packages included: `@babel/runtime`, `meteor-node-stubs`, `vue`, `vue-meteor-tracker`, `vue-router`, `@types/meteor`, `@vitejs/plugin-vue`, `autoprefixer`, `postcss`, `tailwindcss`, `vite`. @@ -276,20 +282,20 @@ Meteor packages included: `meteor-base`, `mobile-experience`, `mongo`, `reactive `vite:bundler`. You can also use Vue 3 with Vite by using the [jorgenvatle:meteor-vite](https://github.com/JorgenVatle/meteor-vite) -package. You can see an example on the [meteor-vite](https://github.com/JorgenVatle/meteor-vite/tree/release/examples/vue) +package. You can see an example on the [meteor-vite](https://github.com/JorgenVatle/meteor-vite/tree/release/examples/vue) repository.

--vue-2

-The command `meteor create --vue-2 app-name` creates a Meteor app with [Vue 2](https://v2.vuejs.org/) and +The command `meteor create --vue-2 app-name` creates a Meteor app with [Vue 2](https://v2.vuejs.org/) and [MongoDB](https://www.mongodb.com/). To create a complete app, including testing and deployment, follow the [Vue 2 tutorial](https://vue-tutorial.meteor.com/). Npm packages included: `@babel/runtime`, `meteor-node-stubs`, `vue`, `vue-meteor-tracker`. Meteor packages included: `meteor-base`, `mobile-experience`, `mongo`, `reactive-var`, `standard-minifier-css`, -`standard-minifier-js`, `es5-shim`, `ecmascript`, `typescript`, `shell-server`, `tracker`, `static-html`, `akryum:vue-component`, +`standard-minifier-js`, `es5-shim`, `ecmascript`, `typescript`, `shell-server`, `tracker`, `static-html`, `akryum:vue-component`, `meteortesting:mocha`, `johanbrook:publication-collector`. @@ -303,7 +309,7 @@ used as a command line only operation as well. > By default, the generator will use JavaScript but if it detects that you have a ``tsconfig.json`` file in your project, it will use TypeScript instead. -running +running ```bash meteor generate customer @@ -511,7 +517,7 @@ It will prompt the following questions. ---- +---

Using your own template

@@ -533,7 +539,7 @@ You can use your own templates for scaffolding your specific workloads. To do th Out of the box is provided a few functions such as replacing ``$$name$$``, ``$$PascalName$$`` and ``$$camelName$$`` these replacements come from this function: - + _Note that scaffoldName is the name that you have passed as argument_ ```js @@ -661,7 +667,7 @@ If you want to connect to your free MongoDB shared cluster using your on setting ``` packages: { mongo: { - options: { + options: { tlsAllowInvalidCertificates: true, }, }, @@ -685,7 +691,7 @@ Your project should be a git repository as the commit hash is going to be used t The `cache-build` option is available since Meteor 1.11. {% endpullquote %} -With the argument `--container-size` you can change your app's container size using the deploy command. The valid arguments are: `tiny`, `compact`, `standard`, `double`, `quad`, `octa`, and `dozen`. One more thing to note here is that the `--container-size` flag can only be used when the `--plan` option is already specified, otherwise using the `--container-size` option will throw an error with the message : `Error deploying application: Internal error`. To see more about the difference and prices of each one you can check [here](https://www.meteor.com/cloud#pricing-section). +With the argument `--container-size` you can change your app's container size using the deploy command. The valid arguments are: `tiny`, `compact`, `standard`, `double`, `quad`, `octa`, and `dozen`. One more thing to note here is that the `--container-size` flag can only be used when the `--plan` option is already specified, otherwise using the `--container-size` option will throw an error with the message : `Error deploying application: Internal error`. To see more about the difference and prices of each one you can check [here](https://www.meteor.com/cloud#pricing-section). {% pullquote warning %} The `--container-size` option is available since Meteor 2.4.1. @@ -912,7 +918,7 @@ upload the build to the architecture that you were using to publish it. You can use `publish-for-arch` to upload a build to a different architecture from a different machine. -If you have already published a package but need to update it's metadata +If you have already published a package but need to update it's metadata (the content of `Package.describe`) or the README you can actually achieve this via `meteor publish --update`. From 8d8911b69218b6197906f57fbe943e4b7cd8110c Mon Sep 17 00:00:00 2001 From: Gabriel Grubba <70247653+Grubba27@users.noreply.github.com> Date: Tue, 5 Dec 2023 13:39:35 -0300 Subject: [PATCH 14/16] Meteor version to 2.14-beta.5 :comet: --- packages/accounts-base/package.js | 2 +- packages/accounts-oauth/package.js | 2 +- packages/accounts-password/package.js | 2 +- packages/accounts-passwordless/package.js | 2 +- packages/babel-compiler/package.js | 2 +- packages/boilerplate-generator/package.js | 2 +- packages/browser-policy-content/package.js | 2 +- packages/constraint-solver/package.js | 2 +- packages/crosswalk/package.js | 2 +- packages/ddp-rate-limiter/package.js | 2 +- packages/ddp-server/package.js | 2 +- packages/deprecated/meteor-platform/package.js | 2 +- packages/deprecated/standard-app-packages/package.js | 2 +- packages/ecmascript/package.js | 2 +- packages/facebook-oauth/package.js | 2 +- packages/fetch/package.js | 2 +- packages/launch-screen/package.js | 2 +- packages/logging/package.js | 2 +- packages/logic-solver/package.js | 2 +- packages/meteor-tool/package.js | 2 +- packages/meteor/package.js | 2 +- packages/mobile-experience/package.js | 2 +- packages/modern-browsers/package.js | 2 +- packages/modules/package.js | 2 +- packages/mongo/package.js | 2 +- packages/npm-mongo/package.js | 2 +- packages/oauth/package.js | 2 +- packages/package-version-parser/package.js | 2 +- packages/react-fast-refresh/package.js | 2 +- packages/service-configuration/package.js | 2 +- packages/socket-stream-client/package.js | 2 +- packages/test-in-browser/package.js | 2 +- packages/test-in-console/package.js | 2 +- packages/test-server-tests-in-console-once/package.js | 2 +- packages/tinytest/package.js | 2 +- packages/tracker/package.js | 2 +- packages/typescript/package.js | 2 +- packages/webapp/package.js | 2 +- scripts/admin/meteor-release-experimental.json | 2 +- 39 files changed, 39 insertions(+), 39 deletions(-) diff --git a/packages/accounts-base/package.js b/packages/accounts-base/package.js index 59d60b784b..ba478a01e0 100644 --- a/packages/accounts-base/package.js +++ b/packages/accounts-base/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'A user account system', - version: '2.2.9-beta2140.4', + version: '2.2.9-beta2140.5', }); Package.onUse(api => { diff --git a/packages/accounts-oauth/package.js b/packages/accounts-oauth/package.js index 21ee860832..95619806ef 100644 --- a/packages/accounts-oauth/package.js +++ b/packages/accounts-oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth-based login services", - version: "1.4.3-beta2140.4", + version: "1.4.3-beta2140.5", }); Package.onUse(api => { diff --git a/packages/accounts-password/package.js b/packages/accounts-password/package.js index 7695ac6e78..ca1ef07361 100644 --- a/packages/accounts-password/package.js +++ b/packages/accounts-password/package.js @@ -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.4.0-beta2140.4', + version: '2.4.0-beta2140.5', }); Npm.depends({ diff --git a/packages/accounts-passwordless/package.js b/packages/accounts-passwordless/package.js index 5f490929f7..a7744a55a0 100644 --- a/packages/accounts-passwordless/package.js +++ b/packages/accounts-passwordless/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'No-password login/sign-up support for accounts', - version: '2.1.4-beta2140.4', + version: '2.1.4-beta2140.5', }); Package.onUse(api => { diff --git a/packages/babel-compiler/package.js b/packages/babel-compiler/package.js index 34e12d2084..976d5527d4 100644 --- a/packages/babel-compiler/package.js +++ b/packages/babel-compiler/package.js @@ -1,7 +1,7 @@ Package.describe({ name: "babel-compiler", summary: "Parser/transpiler for ECMAScript 2015+ syntax", - version: '7.10.5-beta2140.4', + version: '7.10.5-beta2140.5', }); Npm.depends({ diff --git a/packages/boilerplate-generator/package.js b/packages/boilerplate-generator/package.js index c00067fe64..d328ccde5f 100644 --- a/packages/boilerplate-generator/package.js +++ b/packages/boilerplate-generator/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Generates the boilerplate html from program's manifest", - version: '1.7.2-beta2140.4' + version: '1.7.2-beta2140.5' }); Npm.depends({ diff --git a/packages/browser-policy-content/package.js b/packages/browser-policy-content/package.js index f8211ad035..635e69e3b4 100644 --- a/packages/browser-policy-content/package.js +++ b/packages/browser-policy-content/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Configure content security policies", - version: "1.1.3-beta2140.4" + version: "1.1.3-beta2140.5" }); Package.onUse(function (api) { diff --git a/packages/constraint-solver/package.js b/packages/constraint-solver/package.js index 43e73e4e38..009d379a41 100644 --- a/packages/constraint-solver/package.js +++ b/packages/constraint-solver/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Given the set of the constraints, picks a satisfying configuration", - version: "1.2.1-beta2140.4" + version: "1.2.1-beta2140.5" }); Npm.depends({ diff --git a/packages/crosswalk/package.js b/packages/crosswalk/package.js index 295045ed30..5d252c4e2e 100644 --- a/packages/crosswalk/package.js +++ b/packages/crosswalk/package.js @@ -1,7 +1,7 @@ Package.describe({ summary: "Makes your Cordova application use the Crosswalk WebView \ instead of the System WebView on Android", - version: '1.7.2-beta2140.4', + version: '1.7.2-beta2140.5', documentation: null, deprecated: true }); diff --git a/packages/ddp-rate-limiter/package.js b/packages/ddp-rate-limiter/package.js index bed6cd282e..94557be43d 100644 --- a/packages/ddp-rate-limiter/package.js +++ b/packages/ddp-rate-limiter/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'ddp-rate-limiter', - version: '1.2.1-beta2140.4', + version: '1.2.1-beta2140.5', // Brief, one-line summary of the package. summary: 'The DDPRateLimiter allows users to add rate limits to DDP' + ' methods and subscriptions.', diff --git a/packages/ddp-server/package.js b/packages/ddp-server/package.js index 561cbb3ef5..2b6cd4cffb 100644 --- a/packages/ddp-server/package.js +++ b/packages/ddp-server/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor's latency-compensated distributed data server", - version: '2.7.0-beta2140.4', + version: '2.7.0-beta2140.5', documentation: null }); diff --git a/packages/deprecated/meteor-platform/package.js b/packages/deprecated/meteor-platform/package.js index 82d57f5d82..9a887fa422 100644 --- a/packages/deprecated/meteor-platform/package.js +++ b/packages/deprecated/meteor-platform/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "(Deprecated) Include a standard set of Meteor packages in your app", - version: '1.2.8-beta2140.4', + version: '1.2.8-beta2140.5', deprecated: true, documentation: 'README.md' }); diff --git a/packages/deprecated/standard-app-packages/package.js b/packages/deprecated/standard-app-packages/package.js index 50aa742796..0351c9aac0 100644 --- a/packages/deprecated/standard-app-packages/package.js +++ b/packages/deprecated/standard-app-packages/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Moved to meteor-platform", - version: '1.0.11-beta2140.4', + version: '1.0.11-beta2140.5', deprecated: true, documentation: 'README.md' }); diff --git a/packages/ecmascript/package.js b/packages/ecmascript/package.js index 29dae0c541..8e49118555 100644 --- a/packages/ecmascript/package.js +++ b/packages/ecmascript/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'ecmascript', - version: '0.16.8-beta2140.4', + version: '0.16.8-beta2140.5', summary: 'Compiler plugin that supports ES2015+ in all .js files', documentation: 'README.md', }); diff --git a/packages/facebook-oauth/package.js b/packages/facebook-oauth/package.js index 582991a67e..b85c2b67a2 100644 --- a/packages/facebook-oauth/package.js +++ b/packages/facebook-oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Facebook OAuth flow", - version: '1.11.3-beta2140.4' + version: '1.11.3-beta2140.5' }); Package.onUse(api => { diff --git a/packages/fetch/package.js b/packages/fetch/package.js index 198b5f05c7..ce2c3f3e9d 100644 --- a/packages/fetch/package.js +++ b/packages/fetch/package.js @@ -1,6 +1,6 @@ Package.describe({ name: "fetch", - version: '0.1.4-beta2140.4', + version: '0.1.4-beta2140.5', summary: "Isomorphic modern/legacy/Node polyfill for WHATWG fetch()", documentation: "README.md" }); diff --git a/packages/launch-screen/package.js b/packages/launch-screen/package.js index 8dfcc38946..1888d13722 100644 --- a/packages/launch-screen/package.js +++ b/packages/launch-screen/package.js @@ -6,7 +6,7 @@ Package.describe({ // between such packages and the build tool. name: 'launch-screen', summary: 'Default and customizable launch screen on mobile.', - version: '2.0.0-beta2140.4' + version: '2.0.0-beta2140.5' }); Package.onUse(function(api) { diff --git a/packages/logging/package.js b/packages/logging/package.js index f1cdda8cd3..0c2251fd36 100644 --- a/packages/logging/package.js +++ b/packages/logging/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Logging facility.', - version: '1.3.3-beta2140.4', + version: '1.3.3-beta2140.5', }); Npm.depends({ diff --git a/packages/logic-solver/package.js b/packages/logic-solver/package.js index 3b23ad5fd0..30e03205b0 100644 --- a/packages/logic-solver/package.js +++ b/packages/logic-solver/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "General satisfiability solver for logic problems", - version: '2.0.8' + version: '2.0.9-beta2140.5' }); Npm.depends({ diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index ac6e5a17dc..445f2cef22 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'The Meteor command-line tool', - version: '2.14.0-beta.4', + version: '2.14.0-beta.5', }); Package.includeTool(); diff --git a/packages/meteor/package.js b/packages/meteor/package.js index c2bde9e440..c4d7332186 100644 --- a/packages/meteor/package.js +++ b/packages/meteor/package.js @@ -2,7 +2,7 @@ Package.describe({ summary: "Core Meteor environment", - version: '1.11.4-beta2140.4', + version: '1.11.4-beta2140.5', }); Package.registerBuildPlugin({ diff --git a/packages/mobile-experience/package.js b/packages/mobile-experience/package.js index e32e3aa281..90af12ae95 100644 --- a/packages/mobile-experience/package.js +++ b/packages/mobile-experience/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'mobile-experience', - version: '1.1.1-beta2140.4', + version: '1.1.1-beta2140.5', summary: 'Packages for a great mobile user experience', documentation: 'README.md' }); diff --git a/packages/modern-browsers/package.js b/packages/modern-browsers/package.js index 2b0688a9e2..22f4609981 100644 --- a/packages/modern-browsers/package.js +++ b/packages/modern-browsers/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'modern-browsers', - version: '0.1.10-beta2140.4', + version: '0.1.10-beta2140.5', summary: 'API for defining the boundary between modern and legacy ' + 'JavaScript clients', diff --git a/packages/modules/package.js b/packages/modules/package.js index 4d8ed9b33a..5c633b257f 100644 --- a/packages/modules/package.js +++ b/packages/modules/package.js @@ -1,6 +1,6 @@ Package.describe({ name: "modules", - version: "0.20.0-beta2140.4", + version: "0.20.0-beta2140.5", summary: "CommonJS module system", documentation: "README.md" }); diff --git a/packages/mongo/package.js b/packages/mongo/package.js index 6abc3bc868..6cc0822a69 100644 --- a/packages/mongo/package.js +++ b/packages/mongo/package.js @@ -9,7 +9,7 @@ Package.describe({ summary: "Adaptor for using MongoDB and Minimongo over DDP", - version: '1.16.8-beta2140.4', + version: '1.16.8-beta2140.5', }); Npm.depends({ diff --git a/packages/npm-mongo/package.js b/packages/npm-mongo/package.js index 3650740380..ef79ec1f47 100644 --- a/packages/npm-mongo/package.js +++ b/packages/npm-mongo/package.js @@ -3,7 +3,7 @@ Package.describe({ summary: "Wrapper around the mongo npm package", - version: '4.17.0-beta2140.4', + version: '4.17.0-beta2140.5', documentation: null }); diff --git a/packages/oauth/package.js b/packages/oauth/package.js index 3dc13a12a5..a0729ca864 100644 --- a/packages/oauth/package.js +++ b/packages/oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth-based services", - version: '2.2.1-beta2140.4', + version: '2.2.1-beta2140.5', }); Package.onUse(api => { diff --git a/packages/package-version-parser/package.js b/packages/package-version-parser/package.js index 40828a269b..d231ef0e42 100644 --- a/packages/package-version-parser/package.js +++ b/packages/package-version-parser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Parses Meteor Smart Package version strings", - version: "3.2.2-beta2140.4", + version: "3.2.2-beta2140.5", }); Npm.depends({ diff --git a/packages/react-fast-refresh/package.js b/packages/react-fast-refresh/package.js index b314a619e5..c77c1d5e80 100644 --- a/packages/react-fast-refresh/package.js +++ b/packages/react-fast-refresh/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'react-fast-refresh', - version: '0.2.8-beta2140.4', + version: '0.2.8-beta2140.5', summary: 'Automatically update React components with HMR', documentation: 'README.md', devOnly: true, diff --git a/packages/service-configuration/package.js b/packages/service-configuration/package.js index ae784b6866..c46697c1ec 100644 --- a/packages/service-configuration/package.js +++ b/packages/service-configuration/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Manage the configuration for third-party services', - version: '1.3.2-beta2140.4', + version: '1.3.2-beta2140.5', }); Package.onUse(function(api) { diff --git a/packages/socket-stream-client/package.js b/packages/socket-stream-client/package.js index 2dd9f6216e..8a173f6584 100644 --- a/packages/socket-stream-client/package.js +++ b/packages/socket-stream-client/package.js @@ -1,6 +1,6 @@ Package.describe({ name: "socket-stream-client", - version: '0.5.2-beta2140.4', + version: '0.5.2-beta2140.5', summary: "Provides the ClientStream abstraction used by ddp-client", documentation: "README.md" }); diff --git a/packages/test-in-browser/package.js b/packages/test-in-browser/package.js index c55b32dd3c..7c408574d1 100644 --- a/packages/test-in-browser/package.js +++ b/packages/test-in-browser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run tests interactively in the browser", - version: '1.3.4-beta2140.4', + version: '1.3.4-beta2140.5', documentation: null }); diff --git a/packages/test-in-console/package.js b/packages/test-in-console/package.js index 36859f4bed..50024bfc2d 100644 --- a/packages/test-in-console/package.js +++ b/packages/test-in-console/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Run tests noninteractively, with results going to the console.', - version: '1.2.5', + version: '1.2.6-beta2140.5', }); Package.onUse(function(api) { diff --git a/packages/test-server-tests-in-console-once/package.js b/packages/test-server-tests-in-console-once/package.js index cd7fc3bf6c..36ab94c49b 100644 --- a/packages/test-server-tests-in-console-once/package.js +++ b/packages/test-server-tests-in-console-once/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run server tests noninteractively, with results going to the console.", - version: '1.0.12-beta2140.4' + version: '1.0.12-beta2140.5' }); Npm.depends({ diff --git a/packages/tinytest/package.js b/packages/tinytest/package.js index 35e8dcfee0..778e34cfe1 100644 --- a/packages/tinytest/package.js +++ b/packages/tinytest/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Tiny testing framework", - version: '1.2.3-beta2140.4' + version: '1.2.3-beta2140.5' }); Npm.depends({ diff --git a/packages/tracker/package.js b/packages/tracker/package.js index 3139f6805a..5f6689dbba 100644 --- a/packages/tracker/package.js +++ b/packages/tracker/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Dependency tracker to allow reactive callbacks", - version: '1.3.2', + version: '1.3.3-beta2140.5', }); Package.onUse(function (api) { diff --git a/packages/typescript/package.js b/packages/typescript/package.js index c63a347d0b..fe17cbf9bc 100644 --- a/packages/typescript/package.js +++ b/packages/typescript/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'typescript', - version: '4.9.5-beta2140.4', + version: '4.9.5-beta2140.5', summary: 'Compiler plugin that compiles TypeScript and ECMAScript in .ts and .tsx files', documentation: 'README.md', diff --git a/packages/webapp/package.js b/packages/webapp/package.js index 86810d04c0..dfcc85d00b 100644 --- a/packages/webapp/package.js +++ b/packages/webapp/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Serves a Meteor app over HTTP', - version: '1.13.5', + version: '1.13.6-beta2140.5', }); Npm.depends({ diff --git a/scripts/admin/meteor-release-experimental.json b/scripts/admin/meteor-release-experimental.json index 7dea97c69a..61a071f362 100644 --- a/scripts/admin/meteor-release-experimental.json +++ b/scripts/admin/meteor-release-experimental.json @@ -1,6 +1,6 @@ { "track": "METEOR", - "version": "2.14-beta.4", + "version": "2.14-beta.5", "recommended": false, "official": false, "description": "Meteor experimental release" From 3242ce2d49dd65d556d5a23cdb175e3a515cc1cb Mon Sep 17 00:00:00 2001 From: Gabriel Grubba <70247653+Grubba27@users.noreply.github.com> Date: Tue, 5 Dec 2023 13:51:37 -0300 Subject: [PATCH 15/16] Meteor version to 2.14-beta.6 :comet: --- packages/accounts-base/package.js | 2 +- packages/accounts-oauth/package.js | 2 +- packages/accounts-password/package.js | 2 +- packages/accounts-passwordless/package.js | 2 +- packages/babel-compiler/package.js | 2 +- packages/boilerplate-generator/package.js | 2 +- packages/browser-policy-content/package.js | 2 +- packages/constraint-solver/package.js | 2 +- packages/crosswalk/package.js | 2 +- packages/ddp-rate-limiter/package.js | 2 +- packages/ddp-server/package.js | 2 +- packages/deprecated/meteor-platform/package.js | 2 +- packages/deprecated/standard-app-packages/package.js | 2 +- packages/ecmascript/package.js | 2 +- packages/facebook-oauth/package.js | 2 +- packages/fetch/package.js | 2 +- packages/launch-screen/package.js | 2 +- packages/logging/package.js | 2 +- packages/logic-solver/package.js | 2 +- packages/meteor-tool/package.js | 2 +- packages/meteor/package.js | 2 +- packages/mobile-experience/package.js | 2 +- packages/modern-browsers/package.js | 2 +- packages/modules/package.js | 2 +- packages/mongo/package.js | 2 +- packages/npm-mongo/package.js | 2 +- packages/oauth/package.js | 2 +- packages/package-version-parser/package.js | 2 +- packages/react-fast-refresh/package.js | 2 +- packages/service-configuration/package.js | 2 +- packages/socket-stream-client/package.js | 2 +- packages/test-in-browser/package.js | 2 +- packages/test-in-console/package.js | 2 +- .../.npm/package/.gitignore | 1 + .../.npm/package/README | 7 +++++++ .../.npm/package/npm-shrinkwrap.json | 10 ++++++++++ packages/test-server-tests-in-console-once/package.js | 2 +- packages/tinytest/.npm/package/.gitignore | 1 + packages/tinytest/.npm/package/README | 7 +++++++ packages/tinytest/.npm/package/npm-shrinkwrap.json | 10 ++++++++++ packages/tinytest/package.js | 2 +- packages/tracker/package.js | 2 +- packages/typescript/package.js | 2 +- packages/webapp/package.js | 2 +- scripts/admin/meteor-release-experimental.json | 2 +- 45 files changed, 75 insertions(+), 39 deletions(-) create mode 100644 packages/test-server-tests-in-console-once/.npm/package/.gitignore create mode 100644 packages/test-server-tests-in-console-once/.npm/package/README create mode 100644 packages/test-server-tests-in-console-once/.npm/package/npm-shrinkwrap.json create mode 100644 packages/tinytest/.npm/package/.gitignore create mode 100644 packages/tinytest/.npm/package/README create mode 100644 packages/tinytest/.npm/package/npm-shrinkwrap.json diff --git a/packages/accounts-base/package.js b/packages/accounts-base/package.js index ba478a01e0..2af2d9b818 100644 --- a/packages/accounts-base/package.js +++ b/packages/accounts-base/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'A user account system', - version: '2.2.9-beta2140.5', + version: '2.2.9-beta2140.6', }); Package.onUse(api => { diff --git a/packages/accounts-oauth/package.js b/packages/accounts-oauth/package.js index 95619806ef..eb9db71224 100644 --- a/packages/accounts-oauth/package.js +++ b/packages/accounts-oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth-based login services", - version: "1.4.3-beta2140.5", + version: "1.4.3-beta2140.6", }); Package.onUse(api => { diff --git a/packages/accounts-password/package.js b/packages/accounts-password/package.js index ca1ef07361..c549c71660 100644 --- a/packages/accounts-password/package.js +++ b/packages/accounts-password/package.js @@ -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.4.0-beta2140.5', + version: '2.4.0-beta2140.6', }); Npm.depends({ diff --git a/packages/accounts-passwordless/package.js b/packages/accounts-passwordless/package.js index a7744a55a0..94969e828a 100644 --- a/packages/accounts-passwordless/package.js +++ b/packages/accounts-passwordless/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'No-password login/sign-up support for accounts', - version: '2.1.4-beta2140.5', + version: '2.1.4-beta2140.6', }); Package.onUse(api => { diff --git a/packages/babel-compiler/package.js b/packages/babel-compiler/package.js index 976d5527d4..072b223a80 100644 --- a/packages/babel-compiler/package.js +++ b/packages/babel-compiler/package.js @@ -1,7 +1,7 @@ Package.describe({ name: "babel-compiler", summary: "Parser/transpiler for ECMAScript 2015+ syntax", - version: '7.10.5-beta2140.5', + version: '7.10.5-beta2140.6', }); Npm.depends({ diff --git a/packages/boilerplate-generator/package.js b/packages/boilerplate-generator/package.js index d328ccde5f..b6cc74a2ab 100644 --- a/packages/boilerplate-generator/package.js +++ b/packages/boilerplate-generator/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Generates the boilerplate html from program's manifest", - version: '1.7.2-beta2140.5' + version: '1.7.2-beta2140.6' }); Npm.depends({ diff --git a/packages/browser-policy-content/package.js b/packages/browser-policy-content/package.js index 635e69e3b4..30c7bef7bf 100644 --- a/packages/browser-policy-content/package.js +++ b/packages/browser-policy-content/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Configure content security policies", - version: "1.1.3-beta2140.5" + version: "1.1.3-beta2140.6" }); Package.onUse(function (api) { diff --git a/packages/constraint-solver/package.js b/packages/constraint-solver/package.js index 009d379a41..c3c48c21cc 100644 --- a/packages/constraint-solver/package.js +++ b/packages/constraint-solver/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Given the set of the constraints, picks a satisfying configuration", - version: "1.2.1-beta2140.5" + version: "1.2.1-beta2140.6" }); Npm.depends({ diff --git a/packages/crosswalk/package.js b/packages/crosswalk/package.js index 5d252c4e2e..424c9b0019 100644 --- a/packages/crosswalk/package.js +++ b/packages/crosswalk/package.js @@ -1,7 +1,7 @@ Package.describe({ summary: "Makes your Cordova application use the Crosswalk WebView \ instead of the System WebView on Android", - version: '1.7.2-beta2140.5', + version: '1.7.2-beta2140.6', documentation: null, deprecated: true }); diff --git a/packages/ddp-rate-limiter/package.js b/packages/ddp-rate-limiter/package.js index 94557be43d..702eee4dc9 100644 --- a/packages/ddp-rate-limiter/package.js +++ b/packages/ddp-rate-limiter/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'ddp-rate-limiter', - version: '1.2.1-beta2140.5', + version: '1.2.1-beta2140.6', // Brief, one-line summary of the package. summary: 'The DDPRateLimiter allows users to add rate limits to DDP' + ' methods and subscriptions.', diff --git a/packages/ddp-server/package.js b/packages/ddp-server/package.js index 2b6cd4cffb..af4ccd3a6e 100644 --- a/packages/ddp-server/package.js +++ b/packages/ddp-server/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor's latency-compensated distributed data server", - version: '2.7.0-beta2140.5', + version: '2.7.0-beta2140.6', documentation: null }); diff --git a/packages/deprecated/meteor-platform/package.js b/packages/deprecated/meteor-platform/package.js index 9a887fa422..18785d34bf 100644 --- a/packages/deprecated/meteor-platform/package.js +++ b/packages/deprecated/meteor-platform/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "(Deprecated) Include a standard set of Meteor packages in your app", - version: '1.2.8-beta2140.5', + version: '1.2.8-beta2140.6', deprecated: true, documentation: 'README.md' }); diff --git a/packages/deprecated/standard-app-packages/package.js b/packages/deprecated/standard-app-packages/package.js index 0351c9aac0..78dbe40b09 100644 --- a/packages/deprecated/standard-app-packages/package.js +++ b/packages/deprecated/standard-app-packages/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Moved to meteor-platform", - version: '1.0.11-beta2140.5', + version: '1.0.11-beta2140.6', deprecated: true, documentation: 'README.md' }); diff --git a/packages/ecmascript/package.js b/packages/ecmascript/package.js index 8e49118555..29834f8b59 100644 --- a/packages/ecmascript/package.js +++ b/packages/ecmascript/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'ecmascript', - version: '0.16.8-beta2140.5', + version: '0.16.8-beta2140.6', summary: 'Compiler plugin that supports ES2015+ in all .js files', documentation: 'README.md', }); diff --git a/packages/facebook-oauth/package.js b/packages/facebook-oauth/package.js index b85c2b67a2..fb1e98c00b 100644 --- a/packages/facebook-oauth/package.js +++ b/packages/facebook-oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Facebook OAuth flow", - version: '1.11.3-beta2140.5' + version: '1.11.3-beta2140.6' }); Package.onUse(api => { diff --git a/packages/fetch/package.js b/packages/fetch/package.js index ce2c3f3e9d..d9f514f041 100644 --- a/packages/fetch/package.js +++ b/packages/fetch/package.js @@ -1,6 +1,6 @@ Package.describe({ name: "fetch", - version: '0.1.4-beta2140.5', + version: '0.1.4-beta2140.6', summary: "Isomorphic modern/legacy/Node polyfill for WHATWG fetch()", documentation: "README.md" }); diff --git a/packages/launch-screen/package.js b/packages/launch-screen/package.js index 1888d13722..331a109093 100644 --- a/packages/launch-screen/package.js +++ b/packages/launch-screen/package.js @@ -6,7 +6,7 @@ Package.describe({ // between such packages and the build tool. name: 'launch-screen', summary: 'Default and customizable launch screen on mobile.', - version: '2.0.0-beta2140.5' + version: '2.0.0-beta2140.6' }); Package.onUse(function(api) { diff --git a/packages/logging/package.js b/packages/logging/package.js index 0c2251fd36..fac8e27042 100644 --- a/packages/logging/package.js +++ b/packages/logging/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Logging facility.', - version: '1.3.3-beta2140.5', + version: '1.3.3-beta2140.6', }); Npm.depends({ diff --git a/packages/logic-solver/package.js b/packages/logic-solver/package.js index 30e03205b0..2f3253d5ec 100644 --- a/packages/logic-solver/package.js +++ b/packages/logic-solver/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "General satisfiability solver for logic problems", - version: '2.0.9-beta2140.5' + version: '2.0.9-beta2140.6' }); Npm.depends({ diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index 445f2cef22..eab66273a1 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'The Meteor command-line tool', - version: '2.14.0-beta.5', + version: '2.14.0-beta.6', }); Package.includeTool(); diff --git a/packages/meteor/package.js b/packages/meteor/package.js index c4d7332186..c9a0deb417 100644 --- a/packages/meteor/package.js +++ b/packages/meteor/package.js @@ -2,7 +2,7 @@ Package.describe({ summary: "Core Meteor environment", - version: '1.11.4-beta2140.5', + version: '1.11.4-beta2140.6', }); Package.registerBuildPlugin({ diff --git a/packages/mobile-experience/package.js b/packages/mobile-experience/package.js index 90af12ae95..7f8884f284 100644 --- a/packages/mobile-experience/package.js +++ b/packages/mobile-experience/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'mobile-experience', - version: '1.1.1-beta2140.5', + version: '1.1.1-beta2140.6', summary: 'Packages for a great mobile user experience', documentation: 'README.md' }); diff --git a/packages/modern-browsers/package.js b/packages/modern-browsers/package.js index 22f4609981..990cfbc464 100644 --- a/packages/modern-browsers/package.js +++ b/packages/modern-browsers/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'modern-browsers', - version: '0.1.10-beta2140.5', + version: '0.1.10-beta2140.6', summary: 'API for defining the boundary between modern and legacy ' + 'JavaScript clients', diff --git a/packages/modules/package.js b/packages/modules/package.js index 5c633b257f..de560615af 100644 --- a/packages/modules/package.js +++ b/packages/modules/package.js @@ -1,6 +1,6 @@ Package.describe({ name: "modules", - version: "0.20.0-beta2140.5", + version: "0.20.0-beta2140.6", summary: "CommonJS module system", documentation: "README.md" }); diff --git a/packages/mongo/package.js b/packages/mongo/package.js index 6cc0822a69..26a7274ea6 100644 --- a/packages/mongo/package.js +++ b/packages/mongo/package.js @@ -9,7 +9,7 @@ Package.describe({ summary: "Adaptor for using MongoDB and Minimongo over DDP", - version: '1.16.8-beta2140.5', + version: '1.16.8-beta2140.6', }); Npm.depends({ diff --git a/packages/npm-mongo/package.js b/packages/npm-mongo/package.js index ef79ec1f47..a01f4d5c00 100644 --- a/packages/npm-mongo/package.js +++ b/packages/npm-mongo/package.js @@ -3,7 +3,7 @@ Package.describe({ summary: "Wrapper around the mongo npm package", - version: '4.17.0-beta2140.5', + version: '4.17.0-beta2140.6', documentation: null }); diff --git a/packages/oauth/package.js b/packages/oauth/package.js index a0729ca864..2a87897683 100644 --- a/packages/oauth/package.js +++ b/packages/oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth-based services", - version: '2.2.1-beta2140.5', + version: '2.2.1-beta2140.6', }); Package.onUse(api => { diff --git a/packages/package-version-parser/package.js b/packages/package-version-parser/package.js index d231ef0e42..3db5db43ce 100644 --- a/packages/package-version-parser/package.js +++ b/packages/package-version-parser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Parses Meteor Smart Package version strings", - version: "3.2.2-beta2140.5", + version: "3.2.2-beta2140.6", }); Npm.depends({ diff --git a/packages/react-fast-refresh/package.js b/packages/react-fast-refresh/package.js index c77c1d5e80..e45871e595 100644 --- a/packages/react-fast-refresh/package.js +++ b/packages/react-fast-refresh/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'react-fast-refresh', - version: '0.2.8-beta2140.5', + version: '0.2.8-beta2140.6', summary: 'Automatically update React components with HMR', documentation: 'README.md', devOnly: true, diff --git a/packages/service-configuration/package.js b/packages/service-configuration/package.js index c46697c1ec..4a3dc4430c 100644 --- a/packages/service-configuration/package.js +++ b/packages/service-configuration/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Manage the configuration for third-party services', - version: '1.3.2-beta2140.5', + version: '1.3.2-beta2140.6', }); Package.onUse(function(api) { diff --git a/packages/socket-stream-client/package.js b/packages/socket-stream-client/package.js index 8a173f6584..b6d9853a6a 100644 --- a/packages/socket-stream-client/package.js +++ b/packages/socket-stream-client/package.js @@ -1,6 +1,6 @@ Package.describe({ name: "socket-stream-client", - version: '0.5.2-beta2140.5', + version: '0.5.2-beta2140.6', summary: "Provides the ClientStream abstraction used by ddp-client", documentation: "README.md" }); diff --git a/packages/test-in-browser/package.js b/packages/test-in-browser/package.js index 7c408574d1..3c56e4d606 100644 --- a/packages/test-in-browser/package.js +++ b/packages/test-in-browser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run tests interactively in the browser", - version: '1.3.4-beta2140.5', + version: '1.3.4-beta2140.6', documentation: null }); diff --git a/packages/test-in-console/package.js b/packages/test-in-console/package.js index 50024bfc2d..2823831152 100644 --- a/packages/test-in-console/package.js +++ b/packages/test-in-console/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Run tests noninteractively, with results going to the console.', - version: '1.2.6-beta2140.5', + version: '1.2.6-beta2140.6', }); Package.onUse(function(api) { diff --git a/packages/test-server-tests-in-console-once/.npm/package/.gitignore b/packages/test-server-tests-in-console-once/.npm/package/.gitignore new file mode 100644 index 0000000000..3c3629e647 --- /dev/null +++ b/packages/test-server-tests-in-console-once/.npm/package/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/packages/test-server-tests-in-console-once/.npm/package/README b/packages/test-server-tests-in-console-once/.npm/package/README new file mode 100644 index 0000000000..3d492553a4 --- /dev/null +++ b/packages/test-server-tests-in-console-once/.npm/package/README @@ -0,0 +1,7 @@ +This directory and the files immediately inside it are automatically generated +when you change this package's NPM dependencies. Commit the files in this +directory (npm-shrinkwrap.json, .gitignore, and this README) to source control +so that others run the same versions of sub-dependencies. + +You should NOT check in the node_modules directory that Meteor automatically +creates; if you are using git, the .gitignore file tells git to ignore it. diff --git a/packages/test-server-tests-in-console-once/.npm/package/npm-shrinkwrap.json b/packages/test-server-tests-in-console-once/.npm/package/npm-shrinkwrap.json new file mode 100644 index 0000000000..faa117111b --- /dev/null +++ b/packages/test-server-tests-in-console-once/.npm/package/npm-shrinkwrap.json @@ -0,0 +1,10 @@ +{ + "lockfileVersion": 1, + "dependencies": { + "lodash.has": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/lodash.has/-/lodash.has-4.5.2.tgz", + "integrity": "sha512-rnYUdIo6xRCJnQmbVFEwcxF144erlD+M3YcJUVesflU9paQaE8p+fJDcIQrlMYbxoANFL+AB9hZrzSBBk5PL+g==" + } + } +} diff --git a/packages/test-server-tests-in-console-once/package.js b/packages/test-server-tests-in-console-once/package.js index 36ab94c49b..24b33a91c5 100644 --- a/packages/test-server-tests-in-console-once/package.js +++ b/packages/test-server-tests-in-console-once/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run server tests noninteractively, with results going to the console.", - version: '1.0.12-beta2140.5' + version: '1.0.12-beta2140.6' }); Npm.depends({ diff --git a/packages/tinytest/.npm/package/.gitignore b/packages/tinytest/.npm/package/.gitignore new file mode 100644 index 0000000000..3c3629e647 --- /dev/null +++ b/packages/tinytest/.npm/package/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/packages/tinytest/.npm/package/README b/packages/tinytest/.npm/package/README new file mode 100644 index 0000000000..3d492553a4 --- /dev/null +++ b/packages/tinytest/.npm/package/README @@ -0,0 +1,7 @@ +This directory and the files immediately inside it are automatically generated +when you change this package's NPM dependencies. Commit the files in this +directory (npm-shrinkwrap.json, .gitignore, and this README) to source control +so that others run the same versions of sub-dependencies. + +You should NOT check in the node_modules directory that Meteor automatically +creates; if you are using git, the .gitignore file tells git to ignore it. diff --git a/packages/tinytest/.npm/package/npm-shrinkwrap.json b/packages/tinytest/.npm/package/npm-shrinkwrap.json new file mode 100644 index 0000000000..c94cd44f53 --- /dev/null +++ b/packages/tinytest/.npm/package/npm-shrinkwrap.json @@ -0,0 +1,10 @@ +{ + "lockfileVersion": 1, + "dependencies": { + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + } + } +} diff --git a/packages/tinytest/package.js b/packages/tinytest/package.js index 778e34cfe1..b22435db47 100644 --- a/packages/tinytest/package.js +++ b/packages/tinytest/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Tiny testing framework", - version: '1.2.3-beta2140.5' + version: '1.2.3-beta2140.6' }); Npm.depends({ diff --git a/packages/tracker/package.js b/packages/tracker/package.js index 5f6689dbba..8c87920280 100644 --- a/packages/tracker/package.js +++ b/packages/tracker/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Dependency tracker to allow reactive callbacks", - version: '1.3.3-beta2140.5', + version: '1.3.3-beta2140.6', }); Package.onUse(function (api) { diff --git a/packages/typescript/package.js b/packages/typescript/package.js index fe17cbf9bc..8e81a4b31a 100644 --- a/packages/typescript/package.js +++ b/packages/typescript/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'typescript', - version: '4.9.5-beta2140.5', + version: '4.9.5-beta2140.6', summary: 'Compiler plugin that compiles TypeScript and ECMAScript in .ts and .tsx files', documentation: 'README.md', diff --git a/packages/webapp/package.js b/packages/webapp/package.js index dfcc85d00b..65e9c2eebc 100644 --- a/packages/webapp/package.js +++ b/packages/webapp/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Serves a Meteor app over HTTP', - version: '1.13.6-beta2140.5', + version: '1.13.6-beta2140.6', }); Npm.depends({ diff --git a/scripts/admin/meteor-release-experimental.json b/scripts/admin/meteor-release-experimental.json index 61a071f362..19ba9cbc7e 100644 --- a/scripts/admin/meteor-release-experimental.json +++ b/scripts/admin/meteor-release-experimental.json @@ -1,6 +1,6 @@ { "track": "METEOR", - "version": "2.14-beta.5", + "version": "2.14-beta.6", "recommended": false, "official": false, "description": "Meteor experimental release" From b62cdee1b47d735d1662a6104d7647d6f8046aa3 Mon Sep 17 00:00:00 2001 From: Gabriel Grubba <70247653+Grubba27@users.noreply.github.com> Date: Tue, 5 Dec 2023 13:55:42 -0300 Subject: [PATCH 16/16] Meteor version to 2.14-beta.7 :comet: --- packages/accounts-base/package.js | 2 +- packages/accounts-oauth/package.js | 2 +- packages/accounts-password/package.js | 2 +- packages/accounts-passwordless/package.js | 2 +- packages/babel-compiler/package.js | 2 +- packages/boilerplate-generator/package.js | 2 +- packages/browser-policy-content/package.js | 2 +- packages/constraint-solver/package.js | 2 +- packages/crosswalk/package.js | 2 +- packages/ddp-rate-limiter/package.js | 2 +- packages/ddp-server/package.js | 2 +- packages/deprecated/meteor-platform/package.js | 2 +- packages/deprecated/standard-app-packages/package.js | 2 +- packages/ecmascript/package.js | 2 +- packages/facebook-oauth/package.js | 2 +- packages/fetch/package.js | 2 +- packages/launch-screen/package.js | 2 +- packages/logging/package.js | 2 +- packages/logic-solver/package.js | 2 +- packages/meteor-tool/package.js | 2 +- packages/meteor/package.js | 2 +- packages/mobile-experience/package.js | 2 +- packages/modern-browsers/package.js | 2 +- packages/modules/package.js | 2 +- packages/mongo/package.js | 2 +- packages/npm-mongo/package.js | 2 +- packages/oauth/package.js | 2 +- packages/package-version-parser/package.js | 2 +- packages/react-fast-refresh/package.js | 2 +- packages/service-configuration/package.js | 2 +- packages/socket-stream-client/package.js | 2 +- packages/test-in-browser/package.js | 2 +- packages/test-in-console/package.js | 2 +- packages/test-server-tests-in-console-once/package.js | 2 +- packages/tinytest/package.js | 2 +- packages/tracker/package.js | 2 +- packages/typescript/package.js | 2 +- packages/webapp/package.js | 2 +- scripts/admin/meteor-release-experimental.json | 2 +- 39 files changed, 39 insertions(+), 39 deletions(-) diff --git a/packages/accounts-base/package.js b/packages/accounts-base/package.js index 2af2d9b818..22de3ed76d 100644 --- a/packages/accounts-base/package.js +++ b/packages/accounts-base/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'A user account system', - version: '2.2.9-beta2140.6', + version: '2.2.9-beta2140.7', }); Package.onUse(api => { diff --git a/packages/accounts-oauth/package.js b/packages/accounts-oauth/package.js index eb9db71224..cb82c0ad67 100644 --- a/packages/accounts-oauth/package.js +++ b/packages/accounts-oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth-based login services", - version: "1.4.3-beta2140.6", + version: "1.4.3-beta2140.7", }); Package.onUse(api => { diff --git a/packages/accounts-password/package.js b/packages/accounts-password/package.js index c549c71660..e4539ba40b 100644 --- a/packages/accounts-password/package.js +++ b/packages/accounts-password/package.js @@ -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.4.0-beta2140.6', + version: '2.4.0-beta2140.7', }); Npm.depends({ diff --git a/packages/accounts-passwordless/package.js b/packages/accounts-passwordless/package.js index 94969e828a..79e1a49bf2 100644 --- a/packages/accounts-passwordless/package.js +++ b/packages/accounts-passwordless/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'No-password login/sign-up support for accounts', - version: '2.1.4-beta2140.6', + version: '2.1.4-beta2140.7', }); Package.onUse(api => { diff --git a/packages/babel-compiler/package.js b/packages/babel-compiler/package.js index 072b223a80..7cce7c22a3 100644 --- a/packages/babel-compiler/package.js +++ b/packages/babel-compiler/package.js @@ -1,7 +1,7 @@ Package.describe({ name: "babel-compiler", summary: "Parser/transpiler for ECMAScript 2015+ syntax", - version: '7.10.5-beta2140.6', + version: '7.10.5-beta2140.7', }); Npm.depends({ diff --git a/packages/boilerplate-generator/package.js b/packages/boilerplate-generator/package.js index b6cc74a2ab..27e39d55fe 100644 --- a/packages/boilerplate-generator/package.js +++ b/packages/boilerplate-generator/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Generates the boilerplate html from program's manifest", - version: '1.7.2-beta2140.6' + version: '1.7.2-beta2140.7' }); Npm.depends({ diff --git a/packages/browser-policy-content/package.js b/packages/browser-policy-content/package.js index 30c7bef7bf..cf77cdb824 100644 --- a/packages/browser-policy-content/package.js +++ b/packages/browser-policy-content/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Configure content security policies", - version: "1.1.3-beta2140.6" + version: "1.1.3-beta2140.7" }); Package.onUse(function (api) { diff --git a/packages/constraint-solver/package.js b/packages/constraint-solver/package.js index c3c48c21cc..f93ec06b63 100644 --- a/packages/constraint-solver/package.js +++ b/packages/constraint-solver/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Given the set of the constraints, picks a satisfying configuration", - version: "1.2.1-beta2140.6" + version: "1.2.1-beta2140.7" }); Npm.depends({ diff --git a/packages/crosswalk/package.js b/packages/crosswalk/package.js index 424c9b0019..ddc4fc336e 100644 --- a/packages/crosswalk/package.js +++ b/packages/crosswalk/package.js @@ -1,7 +1,7 @@ Package.describe({ summary: "Makes your Cordova application use the Crosswalk WebView \ instead of the System WebView on Android", - version: '1.7.2-beta2140.6', + version: '1.7.2-beta2140.7', documentation: null, deprecated: true }); diff --git a/packages/ddp-rate-limiter/package.js b/packages/ddp-rate-limiter/package.js index 702eee4dc9..934baa0dbe 100644 --- a/packages/ddp-rate-limiter/package.js +++ b/packages/ddp-rate-limiter/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'ddp-rate-limiter', - version: '1.2.1-beta2140.6', + version: '1.2.1-beta2140.7', // Brief, one-line summary of the package. summary: 'The DDPRateLimiter allows users to add rate limits to DDP' + ' methods and subscriptions.', diff --git a/packages/ddp-server/package.js b/packages/ddp-server/package.js index af4ccd3a6e..6638e50321 100644 --- a/packages/ddp-server/package.js +++ b/packages/ddp-server/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor's latency-compensated distributed data server", - version: '2.7.0-beta2140.6', + version: '2.7.0-beta2140.7', documentation: null }); diff --git a/packages/deprecated/meteor-platform/package.js b/packages/deprecated/meteor-platform/package.js index 18785d34bf..e41f1cafb5 100644 --- a/packages/deprecated/meteor-platform/package.js +++ b/packages/deprecated/meteor-platform/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "(Deprecated) Include a standard set of Meteor packages in your app", - version: '1.2.8-beta2140.6', + version: '1.2.8-beta2140.7', deprecated: true, documentation: 'README.md' }); diff --git a/packages/deprecated/standard-app-packages/package.js b/packages/deprecated/standard-app-packages/package.js index 78dbe40b09..3a3f76fc21 100644 --- a/packages/deprecated/standard-app-packages/package.js +++ b/packages/deprecated/standard-app-packages/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Moved to meteor-platform", - version: '1.0.11-beta2140.6', + version: '1.0.11-beta2140.7', deprecated: true, documentation: 'README.md' }); diff --git a/packages/ecmascript/package.js b/packages/ecmascript/package.js index 29834f8b59..230b3d22f4 100644 --- a/packages/ecmascript/package.js +++ b/packages/ecmascript/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'ecmascript', - version: '0.16.8-beta2140.6', + version: '0.16.8-beta2140.7', summary: 'Compiler plugin that supports ES2015+ in all .js files', documentation: 'README.md', }); diff --git a/packages/facebook-oauth/package.js b/packages/facebook-oauth/package.js index fb1e98c00b..577614aec2 100644 --- a/packages/facebook-oauth/package.js +++ b/packages/facebook-oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Facebook OAuth flow", - version: '1.11.3-beta2140.6' + version: '1.11.3-beta2140.7' }); Package.onUse(api => { diff --git a/packages/fetch/package.js b/packages/fetch/package.js index d9f514f041..4ade8a365e 100644 --- a/packages/fetch/package.js +++ b/packages/fetch/package.js @@ -1,6 +1,6 @@ Package.describe({ name: "fetch", - version: '0.1.4-beta2140.6', + version: '0.1.4-beta2140.7', summary: "Isomorphic modern/legacy/Node polyfill for WHATWG fetch()", documentation: "README.md" }); diff --git a/packages/launch-screen/package.js b/packages/launch-screen/package.js index 331a109093..8d02e0cc59 100644 --- a/packages/launch-screen/package.js +++ b/packages/launch-screen/package.js @@ -6,7 +6,7 @@ Package.describe({ // between such packages and the build tool. name: 'launch-screen', summary: 'Default and customizable launch screen on mobile.', - version: '2.0.0-beta2140.6' + version: '2.0.0-beta2140.7' }); Package.onUse(function(api) { diff --git a/packages/logging/package.js b/packages/logging/package.js index fac8e27042..2589248d8f 100644 --- a/packages/logging/package.js +++ b/packages/logging/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Logging facility.', - version: '1.3.3-beta2140.6', + version: '1.3.3-beta2140.7', }); Npm.depends({ diff --git a/packages/logic-solver/package.js b/packages/logic-solver/package.js index 2f3253d5ec..128e61ee74 100644 --- a/packages/logic-solver/package.js +++ b/packages/logic-solver/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "General satisfiability solver for logic problems", - version: '2.0.9-beta2140.6' + version: '2.0.9-beta2140.7' }); Npm.depends({ diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index eab66273a1..560c86333e 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'The Meteor command-line tool', - version: '2.14.0-beta.6', + version: '2.14.0-beta.7', }); Package.includeTool(); diff --git a/packages/meteor/package.js b/packages/meteor/package.js index c9a0deb417..6e35f8b527 100644 --- a/packages/meteor/package.js +++ b/packages/meteor/package.js @@ -2,7 +2,7 @@ Package.describe({ summary: "Core Meteor environment", - version: '1.11.4-beta2140.6', + version: '1.11.4-beta2140.7', }); Package.registerBuildPlugin({ diff --git a/packages/mobile-experience/package.js b/packages/mobile-experience/package.js index 7f8884f284..3f69429165 100644 --- a/packages/mobile-experience/package.js +++ b/packages/mobile-experience/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'mobile-experience', - version: '1.1.1-beta2140.6', + version: '1.1.1-beta2140.7', summary: 'Packages for a great mobile user experience', documentation: 'README.md' }); diff --git a/packages/modern-browsers/package.js b/packages/modern-browsers/package.js index 990cfbc464..ff9f3bfee2 100644 --- a/packages/modern-browsers/package.js +++ b/packages/modern-browsers/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'modern-browsers', - version: '0.1.10-beta2140.6', + version: '0.1.10-beta2140.7', summary: 'API for defining the boundary between modern and legacy ' + 'JavaScript clients', diff --git a/packages/modules/package.js b/packages/modules/package.js index de560615af..1a316a2511 100644 --- a/packages/modules/package.js +++ b/packages/modules/package.js @@ -1,6 +1,6 @@ Package.describe({ name: "modules", - version: "0.20.0-beta2140.6", + version: "0.20.0-beta2140.7", summary: "CommonJS module system", documentation: "README.md" }); diff --git a/packages/mongo/package.js b/packages/mongo/package.js index 26a7274ea6..4eac214023 100644 --- a/packages/mongo/package.js +++ b/packages/mongo/package.js @@ -9,7 +9,7 @@ Package.describe({ summary: "Adaptor for using MongoDB and Minimongo over DDP", - version: '1.16.8-beta2140.6', + version: '1.16.8-beta2140.7', }); Npm.depends({ diff --git a/packages/npm-mongo/package.js b/packages/npm-mongo/package.js index a01f4d5c00..59025b2f55 100644 --- a/packages/npm-mongo/package.js +++ b/packages/npm-mongo/package.js @@ -3,7 +3,7 @@ Package.describe({ summary: "Wrapper around the mongo npm package", - version: '4.17.0-beta2140.6', + version: '4.17.0-beta2140.7', documentation: null }); diff --git a/packages/oauth/package.js b/packages/oauth/package.js index 2a87897683..e1cfb284aa 100644 --- a/packages/oauth/package.js +++ b/packages/oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth-based services", - version: '2.2.1-beta2140.6', + version: '2.2.1-beta2140.7', }); Package.onUse(api => { diff --git a/packages/package-version-parser/package.js b/packages/package-version-parser/package.js index 3db5db43ce..b9f11a3bd4 100644 --- a/packages/package-version-parser/package.js +++ b/packages/package-version-parser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Parses Meteor Smart Package version strings", - version: "3.2.2-beta2140.6", + version: "3.2.2-beta2140.7", }); Npm.depends({ diff --git a/packages/react-fast-refresh/package.js b/packages/react-fast-refresh/package.js index e45871e595..863cc4524d 100644 --- a/packages/react-fast-refresh/package.js +++ b/packages/react-fast-refresh/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'react-fast-refresh', - version: '0.2.8-beta2140.6', + version: '0.2.8-beta2140.7', summary: 'Automatically update React components with HMR', documentation: 'README.md', devOnly: true, diff --git a/packages/service-configuration/package.js b/packages/service-configuration/package.js index 4a3dc4430c..15b356c4ac 100644 --- a/packages/service-configuration/package.js +++ b/packages/service-configuration/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Manage the configuration for third-party services', - version: '1.3.2-beta2140.6', + version: '1.3.2-beta2140.7', }); Package.onUse(function(api) { diff --git a/packages/socket-stream-client/package.js b/packages/socket-stream-client/package.js index b6d9853a6a..d7497ca92c 100644 --- a/packages/socket-stream-client/package.js +++ b/packages/socket-stream-client/package.js @@ -1,6 +1,6 @@ Package.describe({ name: "socket-stream-client", - version: '0.5.2-beta2140.6', + version: '0.5.2-beta2140.7', summary: "Provides the ClientStream abstraction used by ddp-client", documentation: "README.md" }); diff --git a/packages/test-in-browser/package.js b/packages/test-in-browser/package.js index 3c56e4d606..1d6c3e4e23 100644 --- a/packages/test-in-browser/package.js +++ b/packages/test-in-browser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run tests interactively in the browser", - version: '1.3.4-beta2140.6', + version: '1.3.4-beta2140.7', documentation: null }); diff --git a/packages/test-in-console/package.js b/packages/test-in-console/package.js index 2823831152..52ea6b2f19 100644 --- a/packages/test-in-console/package.js +++ b/packages/test-in-console/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Run tests noninteractively, with results going to the console.', - version: '1.2.6-beta2140.6', + version: '1.2.6-beta2140.7', }); Package.onUse(function(api) { diff --git a/packages/test-server-tests-in-console-once/package.js b/packages/test-server-tests-in-console-once/package.js index 24b33a91c5..cae04ef2b0 100644 --- a/packages/test-server-tests-in-console-once/package.js +++ b/packages/test-server-tests-in-console-once/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run server tests noninteractively, with results going to the console.", - version: '1.0.12-beta2140.6' + version: '1.0.12-beta2140.7' }); Npm.depends({ diff --git a/packages/tinytest/package.js b/packages/tinytest/package.js index b22435db47..aa45c7ab87 100644 --- a/packages/tinytest/package.js +++ b/packages/tinytest/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Tiny testing framework", - version: '1.2.3-beta2140.6' + version: '1.2.3-beta2140.7' }); Npm.depends({ diff --git a/packages/tracker/package.js b/packages/tracker/package.js index 8c87920280..cee2f103e6 100644 --- a/packages/tracker/package.js +++ b/packages/tracker/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Dependency tracker to allow reactive callbacks", - version: '1.3.3-beta2140.6', + version: '1.3.3-beta2140.7', }); Package.onUse(function (api) { diff --git a/packages/typescript/package.js b/packages/typescript/package.js index 8e81a4b31a..38213bf982 100644 --- a/packages/typescript/package.js +++ b/packages/typescript/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'typescript', - version: '4.9.5-beta2140.6', + version: '4.9.5-beta2140.7', summary: 'Compiler plugin that compiles TypeScript and ECMAScript in .ts and .tsx files', documentation: 'README.md', diff --git a/packages/webapp/package.js b/packages/webapp/package.js index 65e9c2eebc..4e4eb2fa93 100644 --- a/packages/webapp/package.js +++ b/packages/webapp/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Serves a Meteor app over HTTP', - version: '1.13.6-beta2140.6', + version: '1.13.6-beta2140.7', }); Npm.depends({ diff --git a/scripts/admin/meteor-release-experimental.json b/scripts/admin/meteor-release-experimental.json index 19ba9cbc7e..3d2c642240 100644 --- a/scripts/admin/meteor-release-experimental.json +++ b/scripts/admin/meteor-release-experimental.json @@ -1,6 +1,6 @@ { "track": "METEOR", - "version": "2.14-beta.6", + "version": "2.14-beta.7", "recommended": false, "official": false, "description": "Meteor experimental release"