IRE-Mudlet-Mapping / AchaeaCrowdmap

This repository holds the crowdsourced map for the MUD Achaea.
https://ire-mudlet-mapping.github.io/AchaeaCrowdmap/
7 stars 17 forks source link

Bump realm from 12.7.1 to 12.9.0 #518

Closed dependabot[bot] closed 5 months ago

dependabot[bot] commented 6 months ago

Bumps realm from 12.7.1 to 12.9.0.

Changelog

Sourced from realm's changelog.

12.9.0 (2024-05-23)

Enhancements

  • A mixed value can now hold a Realm.List and Realm.Dictionary with nested collections. Note that Realm.Set is not supported as a mixed value. (#6613)
class CustomObject extends Realm.Object {
  value!: Realm.Types.Mixed;

static schema: ObjectSchema = { name: "CustomObject", properties: { value: "mixed", }, }; }

const realm = await Realm.open({ schema: [CustomObject] });

// Create an object with a dictionary value as the Mixed // property, containing primitives and a list. const realmObject = realm.write(() => { return realm.create(CustomObject, { value: { num: 1, string: "hello", bool: true, list: [ { string: "world", }, ], }, }); });

// Accessing the collection value returns the managed collection. const dictionary = realmObject.value; expectDictionary(dictionary); const list = dictionary.list; expectList(list); const leafDictionary = list[0]; expectDictionary(leafDictionary); console.log(leafDictionary.string); // "world"

// Update the Mixed property to a list. realm.write(() => { realmObject.value = [1, "hello", { newKey: "new value" }]; });

// Useful custom helper functions. (Will be provided in a future release.) </tr></table>

... (truncated)

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
github-actions[bot] commented 6 months ago
Warnings
:warning: Main map file not edited. Are you sure you uploaded the file with the correct name?

Generated by :no_entry_sign: dangerJS against 0e734579daebc618b7ef34b8e8fdbbfdbc3efefa

github-actions[bot] commented 6 months ago

Textual map diff

Open to see the diff for commit 0e734579daebc618b7ef34b8e8fdbbfdbc3efefa ```diff No diff in JSON file ```
dependabot[bot] commented 5 months ago

Superseded by #523.