Gabriel Grubba
3fa377af65
Meteor version to 2.11.0 ☄️
release/METEOR@2.11.0
2023-03-02 16:13:46 -03:00
Gabriel Grubba
8eb870577d
Meteor to version 2.11.0 :commet:
2023-03-02 16:12:01 -03:00
Gabriel Grubba
cdb0b17353
Meteor version to 2.11.0 ☄️
2023-03-02 15:55:21 -03:00
Gabriel Grubba
c089ab015a
docs: added gh cli option as well
2023-02-24 10:24:17 -03:00
Gabriel Grubba
8d1b23c5a8
updated readme query filter
2023-02-24 10:15:49 -03:00
Gabriel Grubba
0bcd196ce6
docs: adding missing changes
2023-02-24 10:10:13 -03:00
Gabriel Grubba
97fef9080d
Meteor version to 2.11.0-rc.2 ☄️
release/METEOR@2.11.0-rc.2
2023-02-23 19:45:13 -03:00
Gabriel Grubba
0d340873dc
chore: updated mongo.d.ts imports
2023-02-23 19:44:48 -03:00
Gabriel Grubba
43223d9dca
docs: updated docs with latests changes
2023-02-23 19:34:20 -03:00
Gabriel Grubba
133211123d
tests: commenting typescript tests
2023-02-23 19:30:33 -03:00
Gabriel Grubba
ce75b877e7
trying something
2023-02-23 19:07:30 -03:00
Gabriel Grubba
8753d10f19
Merge pull request #12517 from meteor/dev-bundle-14.21.3.0
...
Node v14.21.3
2023-02-23 14:05:19 -03:00
Gabriel Grubba
1f28b6d760
Merge pull request #12520 from ebroder/object-type-improvements
...
Improve specificity of types previously declared as "Object"
2023-02-23 09:49:49 -03:00
Jan Dvorak
3ffeee19c5
Bump to Node 14.21.3
2023-02-21 10:02:25 +01:00
Evan Broder
f08d2edbf9
Improve specificity of types previously declared as "Object"
2023-02-20 09:33:11 -08:00
Gabriel Grubba
898dea7eef
Merge branch 'release-2.11' of https://github.com/meteor/meteor into release-2.11
2023-02-10 18:01:41 -03:00
Gabriel Grubba
76095bc8fd
docs: updated 2.11 docs and synced the generated history.md
2023-02-10 18:01:31 -03:00
Gabriel Grubba
b27b6e4411
Merge branch 'devel' into release-2.11
2023-02-10 18:00:33 -03:00
Gabriel Grubba
7bea0db31a
Merge pull request #12511 from meteor/feature/update-coffeescript-2.7.0
...
Update coffeescript to 2.7.0
2023-02-10 18:00:16 -03:00
Gabriel Grubba
94e872ba81
Meteor version to 2.11.0-rc.1 ☄️
release/METEOR@2.11.0-rc.1
2023-02-10 17:28:41 -03:00
Gabriel Grubba
31ec2cae39
Meteor version to 2.11.0-rc.1 ☄️
2023-02-10 17:25:01 -03:00
Gabriel Grubba
3934077f0a
chore: adjusted templating
2023-02-10 17:12:47 -03:00
Gabriel Grubba
dde95ffeb8
chore: adjusted string typo in autoyodated
2023-02-10 17:09:22 -03:00
Gabriel Grubba
b358c60d14
chore: updated autoupdater
2023-02-10 17:00:33 -03:00
Gabriel Grubba
ef489d896d
chore: bumbed packages version
2023-02-10 16:50:45 -03:00
Gabriel Grubba
e1e6f194c4
feat: updated script with DSLs
2023-02-10 16:42:11 -03:00
Gabriel Grubba
a21fc1ea2d
docs: updated example.md in generators
2023-02-10 16:41:55 -03:00
Gabriel Grubba
8f49027119
docs: updated changelog
2023-02-10 16:41:39 -03:00
Gabriel Grubba
8ae65b2375
docs: generated history.md to maintain updated
2023-02-10 16:41:22 -03:00
zodern
08e39df932
Update coffeescript to 2.7.0
2023-02-10 13:38:21 -06:00
Gabriel Grubba
d659f634cc
Merge pull request #12510 from ebroder/typescript-template
...
Switch typescript skeleton to zodern:types and test that it works
2023-02-10 15:42:30 -03:00
Gabriel Grubba
d618d3482e
Merge pull request #12505 from ebroder/typescript-dependencies
...
Fix TypeScript type dependencies for mongo, webapp, and underscore
2023-02-10 15:24:28 -03:00
Gabriel Grubba
b43b926f76
Merge pull request #12508 from ebroder/npm-ignore
...
Remove packages/*/.npm from gitignore and add missing .npm folders
2023-02-10 09:41:21 -03:00
Gabriel Grubba
61164a2102
Merge pull request #12495 from Ujjwal-S/fix-type-checking
...
Fixed changePassword and resetPassword functions type checking conditions
2023-02-10 09:38:51 -03:00
Evan Broder
6b5896aec7
Switch typescript skeleton to zodern:types and test that it works
...
As type definitions are moved to be shipped directly with the core
Meteor packages, the @types/meteor NPM package is trending towards
deprecation, so we should steer people to use the preferred way of
pulling in type definitions.
Additionally, add a test to make sure we're not steering them too far
astray.
2023-02-09 15:41:38 -08:00
Evan Broder
2be8e56e24
Remove packages/*/.npm from gitignore and add missing .npm folders
...
It sounds like these folders are supposed to be committed, so long as
they aren't dumping additional junk beyond the npm-shrinkwrap file
(which seems to be the case). So remove them from .gitignore and add the
ones that are missing (presumably as a result of the gitignore).
2023-02-09 13:48:24 -08:00
Evan Broder
e6a399e64f
Add missing type dependencies to underscore and webapp packages
...
This enables their own type declarations to work out of the box.
2023-02-09 13:37:39 -08:00
Evan Broder
f3f5e01ea8
Thread upstream mongodb types through npm-mongo
...
As it exists currently, the types for the mongo package don't work out
of the box because they can't find the types for the mongodb NPM
package. TypeScript app developers could work around this by adding
mongodb directly as a dependency, but they shouldn't have to.
However, `zodern:types` can handle pulling in types for NPM
dependencies, but only if the package _with_ those NPM dependencies is
itself exporting type declarations. Since npm-mongo is actually
depending on the mongodb package, add a type declaration reflecting both
the types and objects that it exports. Then switch the mongo package to
import from npm-mongo, giving it access to the types for the mongodb
package.
2023-02-09 13:37:30 -08:00
Gabriel Grubba
64901a6577
Merge pull request #12507 from ebroder/async-type-definitions
...
Add type definitions for async methods from Meteor 2.9
2023-02-09 15:07:01 -03:00
Gabriel Grubba
03b27c98ef
Merge branch 'release-2.11' into async-type-definitions
2023-02-09 15:06:51 -03:00
Evan Broder
dd74fa6d70
Add type definitions for async methods from Meteor 2.9
2023-02-09 08:54:04 -08:00
Gabriel Grubba
4b04e879ec
Merge pull request #12502 from meteor/add-mising-countDocuments-docs
...
docs: adding missing countDocuments documentation
2023-02-09 10:13:42 -03:00
Gabriel Grubba
366e18117c
Merge pull request #12506 from ebroder/typescript-missing-types
...
TypeScript skeleton fixes
2023-02-09 10:06:31 -03:00
Evan Broder
d2042ddfd8
Add missing types from typescript skeleton
...
The project's tsconfig.json has noImplicitAny: true, so we shouldn't
allow these to be implicitly any.
2023-02-08 16:05:36 -08:00
Evan Broder
22ca05b825
Add missing dependency to typescript skeleton
...
A TypeScript project with types: ['node'] in tsconfig.json will fail of
@types/node isn't included to provide those types.
2023-02-08 16:03:15 -08:00
Gabriel Grubba
e03979c43c
docs: updated docs
2023-02-08 17:38:42 -03:00
Gabriel Grubba
8c5aec2b55
Merge pull request #12428 from ref-app/release-2.10
...
Remove Blaze dependency and types that live in blaze.d.ts
2023-02-08 17:01:29 -03:00
Gabriel Grubba
3167745459
Merge pull request #12503 from meteor/service-configuration-publish
...
making arrow function to normal fn in meteor.loginServiceConfiguration subscription
2023-02-08 14:32:31 -03:00
Gabriel Grubba
8298819dde
making arrow function to normal fn
2023-02-08 13:54:45 -03:00
Gabriel Grubba
2b3769af9b
Meteor version to 2.11.0-rc.0 ☄️
release/METEOR@2.11.0-rc.0
2023-02-07 17:13:47 -03:00