Files
meteor/packages/session
italo jose 884f658d66 Normalize package versions: revert unintended beta bumps and align ddp-server across tests
- Revert several packages to their stable versions (remove accidental beta bumps):
  accounts-base -> 3.2.0
  accounts-password -> 3.2.2
  minimongo -> 2.0.5
  mongo-decimal -> 0.2.0
  oauth1 -> 1.5.2
  service-configuration -> 1.3.5
  session -> 1.2.2
- Bump specific packages as intended:
  ddp-server -> 3.1.3-beta350.3
  mongo -> 2.3.0-beta350.3
  meteor-tool -> 3.5.0-beta.3
  test-in-console -> 2.0.2-beta350.3
  webapp -> 2.2.1-beta350.3
- Update modern-tests apps' .meteor/versions to use ddp-server@3.1.2
- Update v3 changelog to reflect the corrected bumped packages
2026-02-12 10:02:09 -03:00
..
2016-08-30 15:40:14 -07:00
2018-11-03 16:12:06 -04:00

session

Source code of released version | Source code of development version


This package provide Session. Session is a special ReactiveDict whose contents are preserved across Hot Code Push. It's usually used to store the current state of the user interface, for example, the currently selected row in a table, ora flag indicating if a dialog box is open.

Full documentation of Session can be found on the main Meteor docs page.

Future work

Unify with reactive-dict.