Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency svelte-i18n to v3.4.0 #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 5, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
svelte-i18n 3.0.3 -> 3.4.0 age adoption passing confidence

Release Notes

kaisermann/svelte-i18n

v3.4.0

Compare Source

Features

3.3.13 (2021-10-11)

Bug Fixes

3.3.12 (2021-09-30)

Bug Fixes
  • fallback delve to undefined for an undefined key (64e8ae2)

3.3.11 (2021-09-30)

Bug Fixes
  • fallback delve to undefined for an undefined key (64e8ae2)

3.3.10 (2021-08-24)

Bug Fixes
  • enable typescript strictNullChecks (bf4189a)

3.3.9 (2021-03-27)

Bug Fixes
  • 🐛 only set lang attr if lang is not nullish (1c516c9), closes #​133

3.3.8 (2021-03-27)

Bug Fixes
  • 🐛 support more specific fallback locale (i.e en-GB vs en) (5db1dbc), closes #​137

3.3.7 (2021-03-17)

Bug Fixes
  • clear locale lookup cache when new messages are added (#​130) (88ad5b2)

3.3.6 (2021-02-25)

Bug Fixes
  • 🐛 generated types directory (396e181)
  • 🐛 support deep properties keyed with dots (980bc18), closes #​129

3.3.5 (2021-02-21)

Bug Fixes
  • 🐛 support deep properties keyed with dots (c13ed35), closes #​129

3.3.4 (2021-02-15)

Bug Fixes

3.3.3 (2021-02-15)

3.3.2 (2021-02-11)

Bug Fixes
  • expose intl-messageformat option ignoreTag and default to true for backwards compatibility. (#​121) (341ed7f)

3.3.1 (2021-02-11)

Bug Fixes
  • 🐛 default $json type to any (41d8e4d)

v3.3.13

Compare Source

Bug Fixes

v3.3.12

Compare Source

Bug Fixes
  • fallback delve to undefined for an undefined key (64e8ae2)

v3.3.11

Compare Source

Bug Fixes
  • fallback delve to undefined for an undefined key (64e8ae2)

v3.3.10

Compare Source

Bug Fixes
  • enable typescript strictNullChecks (bf4189a)

v3.3.9

Compare Source

Bug Fixes
  • 🐛 only set lang attr if lang is not nullish (1c516c9), closes #​133

v3.3.8

Compare Source

Bug Fixes
  • 🐛 support more specific fallback locale (i.e en-GB vs en) (5db1dbc), closes #​137

v3.3.7

Compare Source

Bug Fixes
  • clear locale lookup cache when new messages are added (#​130) (88ad5b2)

v3.3.6

Compare Source

Bug Fixes
  • 🐛 generated types directory (396e181)
  • 🐛 support deep properties keyed with dots (980bc18), closes #​129

v3.3.5

Compare Source

Bug Fixes
  • 🐛 support deep properties keyed with dots (c13ed35), closes #​129

v3.3.4

Compare Source

Bug Fixes

v3.3.3

Compare Source

v3.3.2

Compare Source

Bug Fixes
  • expose intl-messageformat option ignoreTag and default to true for backwards compatibility. (#​121) (341ed7f)

v3.3.1

Compare Source

Bug Fixes

v3.3.0

Compare Source

Features

3.2.7 (2020-11-23)

Bug Fixes

3.2.6 (2020-11-20)

Changed
  • Don't minify CLI for better debugging.

3.2.5 (2020-11-08)

Bug Fixes
  • 🐛 regression of flat keys separated by dot (d87caef)

3.2.4 (2020-11-07)

Bug Fixes
  • 🐛 possible interpolation value types (0caaead)

3.2.3 (2020-11-06)

Bug Fixes
  • 🐛 prevent extraction of non-deterministic message ids (9b6adb6), closes #​89

3.2.2 (2020-11-05)

Bug Fixes
  • 🐛 update estree-walker and intl-messageformat (44e71d7)

3.2.1 (2020-11-05)

Bug Fixes
  • 🐛 interpolate values for default values and missing keys (330f20b), closes #​101

v3.2.7

Compare Source

Bug Fixes

v3.2.6

Compare Source

Changed
  • Don't minify CLI for better debugging.

v3.2.5

Compare Source

Bug Fixes
  • 🐛 regression of flat keys separated by dot (d87caef)

v3.2.4

Compare Source

Bug Fixes
  • 🐛 possible interpolation value types (0caaead)

v3.2.3

Compare Source

Bug Fixes
  • 🐛 prevent extraction of non-deterministic message ids (9b6adb6), closes #​89

v3.2.2

Compare Source

Bug Fixes
  • 🐛 update estree-walker and intl-messageformat (44e71d7)

v3.2.1

Compare Source

Bug Fixes
  • 🐛 interpolate values for default values and missing keys (330f20b), closes #​101

v3.2.0

Compare Source

Features
  • 🎸 Support getting deep localized objects/arrays (ff54136), closes #​83

v3.1.0

Compare Source

Bug Fixes
  • export correct configuration type (68e8c51)

3.0.4 (2020-05-31)

Bug Fixes
  • 🐛 also wait for loaders added while loading (e560514)

3.0.3 (2020-03-29)

Bug Fixes
  • 🐛 prevent server from breaking on locale.set (07ef1da), closes #​55

3.0.2 (2020-03-06)

Bug Fixes

3.0.1 (2020-02-03)

Features
  • 🎸 add runtime typings (7bf47d8), closes #​43
  • 🎸 make date,time and number formatters tree-shakeable (6526245)
  • 🎸 make getClientLocale tree-shakeable (31b556b)
BREAKING CHANGES
  • It's now needed to explicitly import the getClientLocale method to use
    its heuristics when setting the initial locale. This makes the method
    and its helpers to be tree-shakeable.
import { init, getClientLocale } from 'svelte-i18n'

init({
  initialLocale: getClientLocale({ ... })
})
  • Changes completely the API. Now, to format a number, date or time, the
    developer must explicitly import the formatter store:

import { time, date, number } from 'svelte-i18n'

v3.0.4

Compare Source

Bug Fixes
  • 🐛 also wait for loaders added while loading (e560514)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title fix(deps): update dependency svelte-i18n to v3.3.12 fix(deps): update dependency svelte-i18n to v3.3.13 Oct 11, 2021
@renovate renovate bot force-pushed the renovate/svelte-i18n-3.x branch from 09e143e to a952876 Compare April 25, 2022 02:28
@renovate renovate bot changed the title fix(deps): update dependency svelte-i18n to v3.3.13 fix(deps): update dependency svelte-i18n to v3.4.0 Apr 25, 2022
@renovate
Copy link
Author

renovate bot commented Mar 21, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@renovate renovate bot changed the title fix(deps): update dependency svelte-i18n to v3.4.0 fix(deps): update dependency svelte-i18n to v3.4.0 - autoclosed Apr 4, 2023
@renovate renovate bot closed this Apr 4, 2023
@renovate renovate bot deleted the renovate/svelte-i18n-3.x branch April 4, 2023 01:23
@renovate renovate bot changed the title fix(deps): update dependency svelte-i18n to v3.4.0 - autoclosed fix(deps): update dependency svelte-i18n to v3.4.0 Apr 4, 2023
@renovate renovate bot reopened this Apr 4, 2023
@renovate renovate bot restored the renovate/svelte-i18n-3.x branch April 4, 2023 10:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant