@nyaruka/temba-components 0.36.1 → 0.37.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,26 @@
1
+ # This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
2
+ # For more information, see: https://github.com/actions/stale
3
+ name: Close stale issues and PRs
4
+ on:
5
+ schedule:
6
+ - cron: "30 1 * * *"
7
+ jobs:
8
+ stale:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ issues: write
12
+ pull-requests: write
13
+ steps:
14
+ - uses: actions/stale@v5
15
+ with:
16
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
17
+ stale-issue-label: "inactive"
18
+ stale-issue-message: "Without activity, this issue will be closed in 14 days."
19
+ close-issue-message: "This issue was closed for inactivity."
20
+ stale-pr-message: "Without activity, this PR will be closed in 14 days."
21
+ close-pr-message: "This PR was closed for inactivity."
22
+ stale-pr-label: "inactive"
23
+ days-before-pr-stale: 30
24
+ days-before-pr-close: 14
25
+ days-before-issue-stale: 30
26
+ days-before-issue-close: 14
package/CHANGELOG.md CHANGED
@@ -4,8 +4,19 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [v0.37.0](https://github.com/nyaruka/temba-components/compare/v0.36.1...v0.37.0)
8
+
9
+ - 🍔 new content menu part deux [`#233`](https://github.com/nyaruka/temba-components/pull/233)
10
+ - Fix template output on build [`#246`](https://github.com/nyaruka/temba-components/pull/246)
11
+ - Bump json5 from 1.0.1 to 1.0.2 [`#234`](https://github.com/nyaruka/temba-components/pull/234)
12
+ - console log cleanup and some unit tests [`6013e5a`](https://github.com/nyaruka/temba-components/commit/6013e5a5f89e9e24c0e5a73580b88dfe5bd6848f)
13
+ - query (search) working [`558cab0`](https://github.com/nyaruka/temba-components/commit/558cab088f7fb9c2cc686642ce2b0440d4e0a7f4)
14
+ - some logic updates - legacy (version) working, query (search) in progress [`4e60700`](https://github.com/nyaruka/temba-components/commit/4e6070005a554d71068870a01a74be8f7c5aa79a)
15
+
7
16
  #### [v0.36.1](https://github.com/nyaruka/temba-components/compare/v0.36.0...v0.36.1)
8
17
 
18
+ > 16 December 2022
19
+
9
20
  - Update publish target [`bbc151a`](https://github.com/nyaruka/temba-components/commit/bbc151a4ca1711c5eedac163623d6ac8bfd943d5)
10
21
 
11
22
  #### [v0.36.0](https://github.com/nyaruka/temba-components/compare/v0.35.3...v0.36.0)