Nacho Codoñer
1e146f0e76
update Rspack plugin references in documentation
2026-01-21 15:33:43 +01:00
Nacho Codoñer
819b1549f9
update build plugins for packages docs to reflect Rspack limitations in Meteor 3.4+
2026-01-19 16:54:53 +01:00
Nacho Codoñer
d68160c553
Merge branch 'devel' into release-3.4
2025-12-09 16:10:33 +01:00
Italo José
e6e294809d
Merge branch 'devel' into patch-2
2025-12-02 18:41:10 -03:00
Tajagn Garala
30cd44bc56
docs: add documentation for loginWithToken in accounts.md ( #13839 )
...
* Duplicate forEachAsync definition removed.
* going back
* docs: add loginWithToken to accounts.md
* repush the brench
* Restore accounnt-ui documentation line and keel loginWithToken docs
* Fix formatting in accounts.md documentation
* Fix formatting issue in accounts.md
---------
Co-authored-by: Italo José <italo.i@live.com >
2025-12-02 15:29:12 -03:00
Jan Dvorak
ebc124dd80
Add docs for OAuth configurations ( #13946 )
...
Also includes auto generated stuff
Co-authored-by: Italo José <italo.i@live.com >
2025-12-02 14:50:08 -03:00
Nacho Codoñer
8edf7b7236
Merge branch 'devel' into release-3.4
2025-11-26 15:44:45 +01:00
imongithubnow
0087dfb16c
Update app.md
...
Fix example value for a preference
2025-11-26 14:25:33 +01:00
Nacho Codoñer
b578977720
Merge branch 'devel' into release-3.4
2025-11-25 14:50:49 +01:00
Nacho Codoñer
84d530c17a
Merge pull request #12852 from harryadel/feature/check
...
Add NonEmptyString to check package
2025-11-24 17:59:25 +01:00
Gabriel Grubba
d901ce98b3
DOCS: update meteor.com/cloud to galaxycloud.app
...
URLs have changed, and this is another round of updating those!
2025-11-19 09:53:20 -03:00
Harry Adel
0c1058d939
[docs] Add NonEmptyString
2025-11-16 22:07:19 +02:00
Nacho Codoñer
d0ad65f3ca
Merge pull request #14006 from meteor/feature/meteor.deferrable
...
FEATURE: `Meteor.deferrable`
2025-11-11 17:23:42 +01:00
Gabriel Grubba
2c74b2f2d0
DOCS: add detail on why this function is nice to have
2025-11-10 10:25:44 -03:00
Gabriel Grubba
8f58378836
FEATURE: Meteor.deferrable
...
While working on updating apps to use the new modern bundle, we came across some places that used this exciting pattern to get some performance gains on dev mode:
```js
if (Meteor.isDevelopment) {
Meteor.defer(loadSomethingRemote);
} else {
await loadSomethingRemote();
}
```
Sometimes we do not need this service while in dev and this would only make our startup slower, _now_ with this function we can have this nice api to wrap it:
```js
await Meteor.deferrable(connectToExternalDB, {
on: ["development"],
});
```
2025-11-10 10:12:18 -03:00
Nacho Codoñer
f282aaeb03
add Npm.devDepends in Atmosphere package docs
2025-10-28 10:58:01 +01:00
Nacho Codoñer
e36fef1436
Merge pull request #13830 from harryadel/mongo/collection-extensions
...
Integrate lai:collection-extensions into core
2025-10-20 16:16:19 +02:00
Jan Dvorak
efbbf67281
add: Accounts.logoutAllClients
2025-08-06 11:16:39 -03:00
harryadel
8cee77867f
Add documentation
2025-07-07 10:52:55 -03:00
Jørgen Vatle
adc948b38a
Add ApiBox for Mongo.getCollection from v2 docs.
...
#13641
v2 docs commit: 962438254a
2025-07-06 18:19:55 +03:00
repetitioestmaterstudiorum
93b799b8ed
note regarding _id being temporary in Accounts.onCreateUser
2025-07-04 08:56:04 -03:00
harryadel
b620ff222d
Apply Nacho fixes
2025-04-02 19:00:00 +02:00
harryadel
e294d52f8f
Add replace email utility
2025-03-28 19:26:39 +02:00
Gabriel Grubba
6452464b4e
Merge branch 'devel' into update-galaxy-links
2025-03-26 10:21:37 -03:00
Frederico Maia
035e0d769c
Update Galaxy documentation links to point to the new support site.
2025-03-25 10:06:35 -03:00
Nacho Codoñer
42c86f3d36
Merge branch 'devel' into release-3.2
2025-03-17 11:51:40 +01:00
Nacho Codoñer
1d39500a37
Merge branch 'release-3.2' into feature/argon2-password-encryption
2025-03-17 08:57:19 +01:00
Joe Pea
41d882350f
Update accounts.md
2025-03-11 00:52:34 -05:00
Victor Parpoil
ffba954b4b
Merge remote-tracking branch 'origin/devel' into feature/argon2-password-encryption
2025-03-10 16:34:37 +01:00
Victor Parpoil
e2f52284ca
fix: argon2 default parameters were too strong
2025-03-10 16:34:14 +01:00
Gabriel Grubba
d97905c43c
Merge pull request #13618 from meteor/feature/add-option-to-remove-timestamp-in-logging
...
FEATURE: add `shouldShowTime` to `logging` package
2025-02-21 07:53:29 -03:00
Nacho Codoñer
708270ab72
Merge pull request #13622 from dr-dimitru/patch-1
...
fix: typo in link to Mongo-Cursor-forEachAsync
2025-02-17 14:27:58 +01:00
dr.dimitru
218d4b370d
fix: typo in link to Mongo-Cursor-forEachAsync
2025-02-16 16:47:04 +02:00
Gabriel Grubba
2671e5c9cd
DOCS: Add options to logging package
2025-02-12 08:05:52 -03:00
Nacho Codoñer
4b9b25edb0
Merge branch 'devel' into argon2-support
2025-02-07 14:33:18 +01:00
Nacho Codoñer
9331c224af
Merge branch 'devel' into feature/argon2-password-encryption
2025-02-04 16:38:40 +01:00
Nacho Codoñer
e52057c50a
Merge remote-tracking branch 'vparpoil/feature/argon2-password-encryption' into argon2-support
2025-02-04 16:14:15 +01:00
Nacho Codoñer
8f8d7a85ca
Merge pull request #13606 from ref-app/devel
...
Implement #13605 to opt-in to legacy
2025-02-04 13:47:34 +01:00
Nacho Codoñer
4b327b5f9c
Merge branch 'release-3.1.2' into feature/docs-setMinimumBrowserVersions
...
# Conflicts:
# v3-docs/docs/package-lock.json
# v3-docs/docs/package.json
2025-02-03 15:08:18 +01:00
Gabriel Grubba
8ea36eae8b
DOCS: Fix typo in Tracker.md
...
Before it was using `findAsync({}).fetch` but it should have been `find({}).fetchAsync()`
2025-02-03 09:54:34 -03:00
Victor Parpoil
7aaf607c86
adding the feature toggle to the docs
2025-01-31 15:47:45 +01:00
Victor Parpoil
cc8d8ce4b8
Merge remote-tracking branch 'origin/devel' into feature/argon2-password-encryption
2025-01-31 15:18:38 +01:00
Gabriel Grubba
8bf745795f
Merge branch 'release-3.1.2' into feature/docs-setMinimumBrowserVersions
2025-01-30 08:51:44 -03:00
Gabriel Grubba
75f9a6f3e1
DEV: Update vite version in docs
...
This solved https://github.com/meteor/meteor/issues/13560
and also makes our docs up to date with the latest version of vite.
2025-01-27 18:30:29 -03:00
Nacho Codoñer
26835f35a9
Merge branch 'devel' into feature/argon2-password-encryption
2025-01-20 16:08:32 +01:00
Victor Parpoil
78f16e4642
enable using other argon2 settings
2025-01-20 12:29:38 +01:00
Victor Parpoil
30be82af61
accounts-password: major version and more documentation about password encryption
2025-01-20 09:42:15 +01:00
Victor Parpoil
9f0bef76c3
Update accounts-password to use argon2 instead of bcrypt
...
Users that have a bcrypt password stored get progressively migrated to argon2 when their password is checked by `checkPasswordAsync`
2025-01-17 18:13:39 +01:00
Leonardo Venturini
4a28e83c7d
add troubleshooting section to docs
2025-01-08 10:32:05 -04:00
Nacho Codoñer
abccea7e8d
Merge pull request #13499 from meteor/allow-deny-tweaks
...
Tweaks on allow/deny rules
2024-12-05 13:37:15 +01:00