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 external major (major) #864

Merged
merged 1 commit into from
Oct 30, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 30, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
lru-cache 6.0.0 -> 10.0.1 age adoption passing confidence
unified (source) 11.0.3 -> 11.0.4 age adoption passing confidence

Release Notes

isaacs/node-lru-cache (lru-cache)

v10.0.1

Compare Source

v10.0.0

Compare Source

  • cache.fetch() return type is now Promise<V | undefined>
    instead of Promise<V | void>. This is an irrelevant change
    practically speaking, but can require changes for TypeScript
    users.

v9.1.2

Compare Source

v9.1.1

Compare Source

v9.1.0

Compare Source

  • cache.set(key, undefined) is now an alias for
    cache.delete(key)

v9.0.3

Compare Source

v9.0.2

Compare Source

v9.0.1

Compare Source

v9.0.0

Compare Source

  • Use named export only, no default export.
  • Bring back minimal polyfill. If this polyfill ends up being
    used, then a warning is printed, as it is not safe for use
    outside of LRUCache.

v8.0.5

Compare Source

v8.0.4

Compare Source

v8.0.3

Compare Source

v8.0.2

Compare Source

v8.0.1

Compare Source

v8.0.0

Compare Source

  • The fetchContext option was renamed to context, and may no
    longer be set on the cache instance itself.
  • Rewritten in TypeScript, so pretty much all the types moved
    around a lot.
  • The AbortController/AbortSignal polyfill is removed. For this
    reason, Node version 16.14.0 or higher is now required.
  • Internal properties were moved to actual private class
    properties.
  • Keys and values must not be null or undefined.
  • Minified export available at 'lru-cache/min', for both CJS
    and MJS builds.

v7.18.3

Compare Source

v7.18.2

Compare Source

v7.18.1

Compare Source

v7.18.0

Compare Source

  • Add support for internal state investigation through the use of
    a status option to has(), set(), get(), and fetch().

v7.17.2

Compare Source

v7.17.1

Compare Source

v7.17.0

Compare Source

  • Add signal option for fetch to pass a user-supplied
    AbortSignal
  • Add ignoreFetchAbort and allowStaleOnFetchAbort options

v7.16.2

Compare Source

  • Fail fetch() promises when they are aborted

v7.16.1

Compare Source

v7.16.0

Compare Source

  • Add allowStaleOnFetchRejection option

v7.15.0

Compare Source

  • Provide both ESM and CommonJS exports

v7.14.1

Compare Source

v7.14.0

Compare Source

  • Add maxEntrySize option to prevent caching items above a
    given calculated size.

v7.13.2

Compare Source

v7.13.1

Compare Source

v7.13.0

Compare Source

  • Add forceRefresh option to trigger a call to the
    fetchMethod even if the item is found in cache, and not
    older than its ttl.

v7.12.1

Compare Source

v7.12.0

Compare Source

  • Add fetchContext option to provide additional information to
    the fetchMethod
  • 7.12.1: Fix bug where adding an item with size greater than
    maxSize would cause bizarre behavior.

v7.11.0

Compare Source

  • Add 'noDeleteOnStaleGet' option, to suppress behavior where a
    get() of a stale item would remove it from the cache.

v7.10.3

Compare Source

v7.10.2

Compare Source

v7.10.1

Compare Source

v7.10.0

Compare Source

  • Add noDeleteOnFetchRejection option, to suppress behavior
    where a failed fetch will delete a previous stale value.
  • Ship types along with the package, rather than relying on
    out of date types coming from DefinitelyTyped.

v7.9.1

Compare Source

v7.9.0

Compare Source

  • Better AbortController polyfill, supporting
    signal.addEventListener('abort') and signal.onabort.
  • (7.9.1) Drop item from cache instead of crashing with an
    unhandledRejection when the fetchMethod throws an error or
    returns a rejected Promise.

v7.8.2

Compare Source

v7.8.1

Compare Source

v7.8.0

Compare Source

  • add updateAgeOnHas option
  • warnings sent to console.error if process.emitWarning unavailable

v7.7.4

Compare Source

v7.7.3

Compare Source

v7.7.2

Compare Source

v7.7.1

Compare Source

v7.7.0

Compare Source

  • fetch: provide options and abort signal

v7.6.1

Compare Source

v7.6.0

Compare Source

  • add cache.getRemainingTTL(key)
  • Add async cache.fetch() method, fetchMethod option
  • Allow unbounded storage if maxSize or ttl set

v7.5.2

Compare Source

v7.5.1

Compare Source

v7.5.0

Compare Source

  • defend against mutation while iterating
  • Add rentries, rkeys, rvalues
  • remove bundler and unnecessary package.json fields

v7.4.5

Compare Source

v7.4.4

Compare Source

v7.4.3

Compare Source

v7.4.2

Compare Source

v7.4.1

Compare Source

v7.4.0

Compare Source

  • Add browser optimized webpack bundle, exposed as 'lru-cache/browser'
  • Track size of compiled bundle in CI (@​SuperOleg39)
  • Add noUpdateTTL option for set()

v7.3.3

Compare Source

v7.3.2

Compare Source

v7.3.1

Compare Source

v7.3.0

Compare Source

  • Add disposeAfter()
  • set() returns the cache object
  • delete() returns boolean indicating whether anything was deleted

v7.2.3

Compare Source

v7.2.2

Compare Source

v7.2.1

Compare Source

v7.2.0

Compare Source

  • Add reason to dispose() calls.

v7.1.3

Compare Source

v7.1.2

Compare Source

v7.1.1

Compare Source

v7.1.0

Compare Source

  • Add ttlResolution option
  • Add ttlAutopurge option

v7.0.4

Compare Source

v7.0.3

Compare Source

v7.0.2

Compare Source

v7.0.1

Compare Source

v7.0.0

Compare Source

unifiedjs/unified (unified)

v11.0.4

Compare Source

Types

Full Changelog: unifiedjs/unified@11.0.3...11.0.4

v11.0.3

Compare Source

Fix
  • 8dee2ab Fix support for functions in data

Full Changelog: unifiedjs/unified@11.0.2...11.0.3

v11.0.2

Compare Source

  • cea788b Fix type of settings if nothing is registered yet

Full Changelog: unifiedjs/unified@11.0.1...11.0.2

v11.0.1

Compare Source

  • d1a915d Fix incorrect type of settings in presets

Full Changelog: unifiedjs/unified@11.0.0...11.0.1

v11.0.0

Compare Source

Change
  • baf80b2 Change to require Node.js 16
    migrate: update too
  • dd9834a Update @types/unist
    migrate: update too
  • 620ccf9 Update vfile
    migrate: update too
Change (unlikey to affect you)
  • a44db46 Add Data, Settings types to augment shared data
    migrate: if you deal with data, type it, see commit for info
  • fb49556 Change to replace Buffer with Uint8Array
    migrate: you’re probably fine unless you use weird encodings, see commit for details if so
  • f3e71a8 Remove Attacher type
    migrate: use Plugin instead
  • cc53bb6 Remove FrozenProcessor type
    migrate: use Processor instead
  • 1aa3494 Change to yield undefined, not null
    migrate: expect undefined
  • 932c140 Change to use exports
    migrate: don’t use private APIs
  • 8e57478 Remove support for classes as compilers, parsers
    migrate: if you love classes, see commit message
  • 4676814 Remove support for compilers returning nullish
    migrate: nobody did that
  • 807ffb9 Add improved types
    migrate: it’s probably just better if anything changed at all
  • b35afe0 Add useful error on empty presets
    by @​wooorm in https://github.com/unifiedjs/unified/pull/202
  • 6f068a0 Fix to deep clone preset settings
  • 56ee288 Fix non-first parameter merging when reconfiguring plugins
Misc

Full Changelog: unifiedjs/unified@10.1.2...11.0.0


Configuration

📅 Schedule: Branch creation - "after 2pm on Monday" in timezone Europe/Zurich, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

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

@github-actions
Copy link

This PR will trigger a patch release when merged.

@codecov
Copy link

codecov bot commented Oct 30, 2023

Codecov Report

Merging #864 (e00d35b) into main (fb52443) will not change coverage.
Report is 1 commits behind head on main.
The diff coverage is n/a.

@@           Coverage Diff           @@
##             main     #864   +/-   ##
=======================================
  Coverage   99.16%   99.16%           
=======================================
  Files          48       48           
  Lines        5045     5045           
  Branches        9        9           
=======================================
  Hits         5003     5003           
  Misses         42       42           

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

@tripodsan tripodsan merged commit cfa60a9 into main Oct 30, 2023
@tripodsan tripodsan deleted the renovate-major-external-major branch October 30, 2023 21:05
adobe-bot pushed a commit that referenced this pull request Oct 30, 2023
@adobe-bot
Copy link

🎉 This PR is included in version @adobe/helix-shared-indexer-v2.0.16 🎉

The release is available on:

Your semantic-release bot 📦🚀

adobe-bot pushed a commit that referenced this pull request Jan 21, 2024
# [8.0.0](v7.29.1...v8.0.0) (2024-01-21)

### Bug Fixes

* @adobe/helix-fetch -> @adobe/helix ([0d05930](0d05930))
* add back innerHTML ([#694](#694)) ([5965a44](5965a44))
* add mocha ([#631](#631)) ([2849219](2849219))
* add url to github mount ([#526](#526)) ([5f989bf](5f989bf))
* allow adding sitemap or languages ([#690](#690)) ([5f095ef](5f095ef))
* **body-data:** reduce eagerness to coerce numbers ([6926f34](6926f34)), closes [#580](#580)
* **bounce:** add better error handling for promise rejections in bounce ([0341743](0341743))
* **bounce:** add timeout to http request, shorten default timeout ([998d87d](998d87d))
* **bounce:** guard against incomplete context ([380cdd0](380cdd0))
* **bounce:** guard against missing `context.invocation` ([e72e5b9](e72e5b9))
* **bounce:** prevent the process from hanging ([3085161](3085161))
* **bounce:** quick responder function should wait as little as possible ([0fc4256](0fc4256))
* **bounce:** re-build request from `request.init` ([da0797b](da0797b))
* **bounce:** trigger release ([f7f52bf](f7f52bf))
* **bounce:** use modified headers, not just original headers ([e8474cf](e8474cf))
* **build:** create monorepo ([9bef792](9bef792)), closes [#444](#444)
* catch unsupported selectors ([#761](#761)) ([59b3f8f](59b3f8f))
* correct export ([6b36f3b](6b36f3b))
* create release ([91d16e0](91d16e0))
* default path for name-function and usage example ([#880](#880)) ([e8d932a](e8d932a))
* **deps:** downgrade @semantic-release/npm to 9.0.2 again ([#793](#793)) ([14e7611](14e7611))
* **deps:** remove [email protected] by updating helix-shared-git dependency ([#800](#800)) ([73f24d2](73f24d2))
* **deps:** update adobe fixes ([0e2b0a5](0e2b0a5))
* **deps:** update adobe fixes ([067f1bb](067f1bb))
* **deps:** update adobe fixes ([#497](#497)) ([1864a7f](1864a7f))
* **deps:** update adobe fixes ([#520](#520)) ([6fae196](6fae196))
* **deps:** update adobe fixes ([#775](#775)) ([74feecb](74feecb))
* **deps:** update adobe fixes ([#785](#785)) ([7a3bb0f](7a3bb0f))
* **deps:** update adobe fixes ([#787](#787)) ([b065890](b065890))
* **deps:** update adobe fixes ([#842](#842)) ([45060ff](45060ff))
* **deps:** update dependency @adobe/fetch to ^4.0.1 ([#756](#756)) ([41fccd4](41fccd4))
* **deps:** update dependency @adobe/fetch to v3.2.0 ([#721](#721)) ([12ea8bc](12ea8bc))
* **deps:** update dependency @adobe/fetch to v3.3.0 ([#726](#726)) ([2dc6fcf](2dc6fcf))
* **deps:** update dependency @adobe/fetch to v4.0.12 ([#806](#806)) ([74e3fa5](74e3fa5))
* **deps:** update dependency @adobe/fetch to v4.0.7 ([#784](#784)) ([fc995a8](fc995a8))
* **deps:** update dependency @adobe/fetch to v4.1.1 ([#863](#863)) ([fb52443](fb52443))
* **deps:** update dependency @adobe/helix-fetch to v2.4.2 ([#543](#543)) ([d06e0c4](d06e0c4))
* **deps:** update dependency @adobe/helix-fetch to v3 ([bb7b3d4](bb7b3d4))
* **deps:** update dependency @adobe/helix-fetch to v3.0.9 ([#670](#670)) ([768d02f](768d02f))
* **deps:** update dependency @adobe/helix-universal to v1.6.12 ([#565](#565)) ([f3e7468](f3e7468))
* **deps:** update dependency @adobe/helix-universal to v1.8.1 ([#587](#587)) ([7c05aea](7c05aea))
* **deps:** update dependency @adobe/helix-universal to v1.9.1 ([#602](#602)) ([fc9987a](fc9987a))
* **deps:** update dependency @adobe/helix-universal to v2 ([#617](#617)) ([0d06223](0d06223))
* **deps:** update dependency @adobe/helix-universal to v2.0.1 ([#621](#621)) ([fab5d6a](fab5d6a))
* **deps:** update dependency @adobe/helix-universal to v3 ([#625](#625)) ([cd33862](cd33862))
* **deps:** update dependency @adobe/helix-universal to v3.0.1 ([da807ff](da807ff))
* **deps:** update dependency @adobe/helix-universal to v3.0.2 ([01ffe0e](01ffe0e))
* **deps:** update dependency @aws-sdk/client-s3 to v3.359.0 ([#818](#818)) ([1616f98](1616f98))
* **deps:** update dependency @aws-sdk/client-s3 to v3.367.0 ([#821](#821)) ([213948a](213948a))
* **deps:** update dependency @aws-sdk/client-s3 to v3.478.0 ([91c46e1](91c46e1))
* **deps:** update dependency @aws-sdk/client-s3 to v3.484.0 ([20fbd78](20fbd78))
* **deps:** update dependency @aws-sdk/client-s3 to v3.496.0 ([26e4636](26e4636))
* **deps:** update dependency ajv to v8.6.0 ([2cbd4d3](2cbd4d3))
* **deps:** update dependency ferrum to v1.9.3 ([#568](#568)) ([2f7516f](2f7516f))
* **deps:** update dependency fs-extra to v10.1.0 ([#673](#673)) ([290378c](290378c))
* **deps:** update dependency fs-extra to v11.1.1 ([#860](#860)) ([1a70f39](1a70f39))
* **deps:** update dependency fs-extra to v11.1.1 ([#862](#862)) ([03f3c65](03f3c65))
* **deps:** update dependency fs-extra to v11.2.0 ([4e819b3](4e819b3))
* **deps:** update dependency lint-staged to v12 ([#599](#599)) ([5ccc345](5ccc345))
* **deps:** update dependency lru-cache to v7 ([#647](#647)) ([4feaa27](4feaa27))
* **deps:** update dependency lru-cache to v7.7.3 ([#666](#666)) ([3935048](3935048))
* **deps:** update dependency lru-cache to v8 ([#774](#774)) ([07aa5ba](07aa5ba))
* **deps:** update dependency lru-cache to v9 ([#783](#783)) ([1b454af](1b454af))
* **deps:** update dependency moment to v2.29.4 ([aa03d49](aa03d49))
* **deps:** update dependency object-hash to v2.2.0 ([07b40d1](07b40d1))
* **deps:** update dependency object-hash to v3 ([d79b768](d79b768))
* **deps:** update dependency yaml to v2 and remove unused configs ([e2fd978](e2fd978))
* **deps:** update dependency yaml to v2.3.2 ([#841](#841)) ([200d590](200d590))
* **deps:** update dependency yaml to v2.3.2 ([#844](#844)) ([14c9b26](14c9b26))
* **deps:** update dependency yaml to v2.3.2 ([#851](#851)) ([35021fa](35021fa))
* **deps:** update external fixes ([9abd444](9abd444))
* **deps:** update external fixes ([eaf2543](eaf2543))
* **deps:** update external fixes ([76b6024](76b6024))
* **deps:** update external fixes ([57ec4b1](57ec4b1))
* **deps:** update external fixes ([08161b3](08161b3))
* **deps:** update external fixes ([6d20238](6d20238))
* **deps:** update external fixes ([d7641d8](d7641d8))
* **deps:** update external fixes ([fb55e25](fb55e25))
* **deps:** update external fixes ([24c8309](24c8309))
* **deps:** update external fixes ([cdddbc5](cdddbc5))
* **deps:** update external fixes ([06e6c6e](06e6c6e))
* **deps:** update external fixes ([fdbdea1](fdbdea1))
* **deps:** update external fixes ([2d80dbd](2d80dbd))
* **deps:** update external fixes ([3325d4d](3325d4d))
* **deps:** update external fixes ([a8dc79e](a8dc79e))
* **deps:** update external fixes ([f055338](f055338))
* **deps:** update external fixes ([94dbdfd](94dbdfd))
* **deps:** update external fixes ([ad49a64](ad49a64))
* **deps:** update external fixes ([#498](#498)) ([8e99853](8e99853))
* **deps:** update external fixes ([#506](#506)) ([6f237fe](6f237fe))
* **deps:** update external fixes ([#567](#567)) ([0ce7d79](0ce7d79))
* **deps:** update external fixes ([#654](#654)) ([fc6c499](fc6c499))
* **deps:** update external fixes ([#665](#665)) ([fb2322d](fb2322d))
* **deps:** update external fixes ([#668](#668)) ([d32918b](d32918b))
* **deps:** update external fixes ([#669](#669)) ([abf4a21](abf4a21))
* **deps:** update external fixes ([#680](#680)) ([75dc78e](75dc78e))
* **deps:** update external fixes ([#742](#742)) ([94ba5fc](94ba5fc))
* **deps:** update external fixes ([#745](#745)) ([67f9cf6](67f9cf6))
* **deps:** update external fixes ([#803](#803)) ([2ddf050](2ddf050))
* **deps:** update external fixes ([#808](#808)) ([797e067](797e067))
* **deps:** update external fixes ([#812](#812)) ([a7e9598](a7e9598))
* **deps:** update external fixes ([#813](#813)) ([ea2d8fd](ea2d8fd))
* **deps:** update external fixes ([#815](#815)) ([c76c8ba](c76c8ba))
* **deps:** update external fixes ([#817](#817)) ([86f672f](86f672f))
* **deps:** update external fixes ([#819](#819)) ([d617f47](d617f47))
* **deps:** update external fixes ([#822](#822)) ([c70b431](c70b431))
* **deps:** update external fixes ([#824](#824)) ([8c57e81](8c57e81))
* **deps:** update external fixes ([#826](#826)) ([a0d260b](a0d260b))
* **deps:** update external fixes ([#830](#830)) ([f182b55](f182b55))
* **deps:** update external fixes ([#831](#831)) ([c1398ec](c1398ec))
* **deps:** update external fixes ([#832](#832)) ([f42ffaf](f42ffaf))
* **deps:** update external fixes ([#836](#836)) ([2000b91](2000b91))
* **deps:** update external fixes ([#840](#840)) ([1337f74](1337f74))
* **deps:** update external fixes ([#843](#843)) ([1651b26](1651b26))
* **deps:** update external fixes ([#845](#845)) ([f638637](f638637))
* **deps:** update external fixes ([#850](#850)) ([33f858a](33f858a))
* **deps:** update external fixes ([#853](#853)) ([d6f4dd2](d6f4dd2))
* **deps:** update external fixes ([#854](#854)) ([646c4f2](646c4f2))
* **deps:** update external fixes ([#856](#856)) ([40b83df](40b83df))
* **deps:** update external fixes ([#859](#859)) ([07f9109](07f9109))
* **deps:** update external fixes ([#868](#868)) ([e73fca1](e73fca1))
* **deps:** update external fixes ([#870](#870)) ([c549fe1](c549fe1))
* **deps:** update external fixes ([#872](#872)) ([e12321d](e12321d))
* **deps:** update external fixes ([#889](#889)) ([d44f945](d44f945))
* **deps:** update external major ([#738](#738)) ([931219f](931219f))
* **deps:** update external major ([#864](#864)) ([cfa60a9](cfa60a9))
* **deps:** update external major ([#866](#866)) ([642e342](642e342))
* don't pin helix-fetch and universal for better deduping ([#639](#639)) ([d4f4060](d4f4060))
* don't throw error if context is invalid ([#757](#757)) ([3b6ec5d](3b6ec5d))
* downgrade semantic-release/npm ([99bcf1d](99bcf1d))
* export getCachePlugin in index.js ([39f6c9c](39f6c9c))
* export SitemapConfig ([5074666](5074666))
* fetch and source should be optional ([#533](#533)) ([a962662](a962662))
* fix release ([e8c058e](e8c058e))
* fix webcrypto calls for non-node env ([dead3d4](dead3d4))
* ignore non body bearing methods for json and form-data ([#630](#630)) ([1473d7b](1473d7b)), closes [#593](#593)
* improve context checks ([#758](#758)) ([d22e740](d22e740))
* increase timeout for slow tests ([c1454e9](c1454e9))
* issues 837/838 ([#839](#839)) ([94c7e93](94c7e93))
* keep trailing slash in relPath of matched mountpoint ([205d1f2](205d1f2))
* log error and stack as well ([1efda5e](1efda5e))
* match should enforce array input ([#835](#835)) ([91874c9](91874c9))
* plugin metadata lost on cache update ([#825](#825)) ([44ccdba](44ccdba))
* prevent prototype pollution ([#765](#765)) ([b6d1677](b6d1677))
* proxy clone to not change original configuration ([#686](#686)) ([96f9ce7](96f9ce7))
* reduce dependencies ([#537](#537)) ([289942b](289942b))
* replace jsdom with rehype ([#691](#691)) ([be2c049](be2c049))
* replace jsdom with rehype-parse ([4c83a85](4c83a85))
* reverse order of cache locations ([#807](#807)) ([101d09e](101d09e))
* Revert "chore: use semantic-release-monorepo-esm ([#867](#867))" ([#878](#878)) ([4b48a4f](4b48a4f))
* **sitemap:** create a separate context for each sitemap ([a27e80b](a27e80b))
* **sitemap:** use h1 ([25a4f97](25a4f97))
* suppress deprecation warning (maxAge has been replaced by ttl) ([#678](#678)) ([7fb2df9](7fb2df9))
* trigger release ([93aaa05](93aaa05))
* trigger release ([5804493](5804493))
* update renovate config to auto detect pin versions ([#644](#644)) ([3ae0423](3ae0423))
* Update semantic-release.yaml ([879e6df](879e6df))
* use and export ValidationError ([#532](#532)) ([0c11d92](0c11d92))
* use correct deps ([6398a43](6398a43))
* use esm ([1ee2a3a](1ee2a3a))
* use Jsep.Field instead of strings ([#869](#869)) ([df2e6da](df2e6da))

### Features

* add contains method and improve index config schema ([97c5134](97c5134))
* add folders to fstab ([c91fcda](c91fcda))
* add hashContentBusId ([#732](#732)) ([595c980](595c980))
* add helix-shared-secrets ([#752](#752)) ([0791f53](0791f53))
* add IMS wrapper ([bb52f86](bb52f86))
* add index configuration ([#684](#684)) ([2cdec6f](2cdec6f))
* add modifiers config ([0016e95](0016e95))
* add shared index ([#604](#604)) ([e915251](e915251))
* add support for debounce function ([#664](#664)) ([70864a8](70864a8))
* add support for iterables ([#600](#600)) ([d480b4d](d480b4d))
* add support for owner global connected users ([b9a27a1](b9a27a1)), closes [#798](#798)
* allow to specify microsoft tenantid for custom domains ([#698](#698)) ([d5b7744](d5b7744))
* **bounce:** add new middleware to bounce slow running functions and get a fast response ([4b5fe31](4b5fe31))
* **bounce:** allow debouncing by setting the `HELIX_DEBOUNCE` environment variable ([dea1558](dea1558))
* **config:** add ignore config, parser ([#542](#542)) ([c95ca88](c95ca88))
* delete generated index configuration ([#792](#792)) ([f08aac7](f08aac7))
* export loadSecrets() ([#814](#814)) ([fa1bab8](fa1bab8))
* improve cross platform compatibilty with conditional crypto import ([b5a1111](b5a1111))
* Improve process queue ([350515e](350515e)), closes [#735](#735)
* introduce helix-sitemap.yaml ([#575](#575)) ([900fe9f](900fe9f))
* move getCachePlugin to shared ([#799](#799)) ([939b2b2](939b2b2))
* move tokencache plugin from onedrive support ([11ec507](11ec507))
* provide support for plugin metadata ([#823](#823)) ([5af56f6](5af56f6))
* replace index definition ([#714](#714)) ([88b6389](88b6389))
* **schema:** add schemas for helix-data-embed ([#507](#507)) ([4563e25](4563e25)), closes [/github.com/adobe/helix-data-embed/pull/356#issuecomment-836357581](https://github.com//github.com/adobe/helix-data-embed/pull/356/issues/issuecomment-836357581)
* set origin of sitemap ([#820](#820)) ([ad12143](ad12143))
* **sitemap:** allow resetting the fetch context ([df861d8](df861d8))
* **sitemap:** propagate resets ([41f77ab](41f77ab))
* **sitemaps:** add `getContents()` and `getXML()` methods to retrieve sitemap content ([ee3fb07](ee3fb07))
* support dynamic options ([#566](#566)) ([8a3aff1](8a3aff1))
* support multiple hreflangs in sitemap ([#802](#802)) ([6fcba40](6fcba40))
* support resolving secrets name via function ([#879](#879)) ([841e7a0](841e7a0))
* target URI should be allowed relative ([#597](#597)) ([d8327c3](d8327c3))
* use base64url encoding for surrogate computation ([#622](#622)) ([8ad0fc0](8ad0fc0))

### BREAKING CHANGES

* requires ESM
* return value of handler is added to result set if the value defined.

- fix TS types
- add support for async generators
* relPath keeps trailing slash after resolution
* convert to esm
* turn library into ESM
* moved to ESM
* moved to ESM and removed innerHTML

* chore: remove comment

* fix: remove typo

* fix: turn parse errors silent again

* fix: apply merges from main

* fix: merge conflict
* **deps:** redirects, markup and helix-config removed
* the encoding for surrogate computation changed from the regular to the url-safe base64 encoding. i.e. '+' -> '-', '/' -> '_'.
@adobe-bot
Copy link

🎉 This PR is included in version 8.0.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants