Skip to content

Commit 7530194

Browse files
committed
Add release please config files
1 parent 902aa89 commit 7530194

File tree

4 files changed

+147
-0
lines changed

4 files changed

+147
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Update release PR
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: googleapis/release-please-action@v4
17+
with:
18+
token: ${{ secrets.RELEASE_PLEASE_GITHUB_TOKEN }}

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "5.3.0"
3+
}

CHANGELOG.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
---
6+
7+
## [v5.3.0] - 2024-09-24
8+
9+
### Added
10+
11+
- Made `map_any_value_to_trait_value` public to allow trait value parsing in core.:contentReference[oaicite:2]{index=2}
12+
13+
### Changed
14+
15+
- Bumped minor version.:contentReference[oaicite:5]{index=5}
16+
17+
**Contributors:** [@gagantrivedi](https://github.com/gagantrivedi):contentReference[oaicite:8]{index=8}
18+
19+
---
20+
21+
## [v5.2.0] - 2024-09-04
22+
23+
### Added
24+
25+
- `use_identity_overrides_in_local_eval` field in environment model.
26+
- `dashboard_alias` field in environment model.:contentReference[oaicite:13]{index=13}
27+
28+
### Changed
29+
30+
- Updated GitHub Actions workflows.
31+
- Bumped `black` dependency from 23.7.0 to 24.3.0.
32+
- Bumped version.:contentReference[oaicite:20]{index=20}
33+
34+
**Contributors:** [@gagantrivedi](https://github.com/gagantrivedi), [@dabeeeenster](https://github.com/dabeeeenster),
35+
[@matthewelwell](https://github.com/matthewelwell),
36+
[@dependabot](https://github.com/dependabot):contentReference[oaicite:23]{index=23}
37+
38+
---
39+
40+
## [v5.1.1] - 2024-01-17
41+
42+
### Fixed
43+
44+
- Avoided recursion during identity features validation.:contentReference[oaicite:26]{index=26}
45+
46+
**Contributors:** [@khvn26](https://github.com/khvn26):contentReference[oaicite:29]{index=29}
47+
48+
---
49+
50+
## [v5.1.0] - 2023-12-15
51+
52+
### Added
53+
54+
- Removed builders modules
55+
- Added `identity_overrides` attribute to `EnvironmentModel` for local evaluation mode
56+
57+
---
58+
59+
_Note: For releases prior to v5.1.0, please refer to the
60+
[GitHub releases page](https://github.com/Flagsmith/flagsmith-engine/releases) for more information._
61+
62+
---
63+
64+
_This changelog was generated based on the available release notes as of June 23, 2025._

release-please-config.json

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"bootstrap-sha": "fd2094131e5e4972a17be5a8efa4cb379cc821ee",
3+
"packages": {
4+
".": {
5+
"release-type": "python",
6+
"changelog-path": "CHANGELOG.md",
7+
"bump-minor-pre-major": false,
8+
"bump-patch-for-minor-pre-major": false,
9+
"draft": false,
10+
"prerelease": false,
11+
"include-component-in-tag": false
12+
}
13+
},
14+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
15+
"changelog-sections": [
16+
{
17+
"type": "feat",
18+
"hidden": false,
19+
"section": "Features"
20+
},
21+
{
22+
"type": "fix",
23+
"hidden": false,
24+
"section": "Bug Fixes"
25+
},
26+
{
27+
"type": "ci",
28+
"hidden": false,
29+
"section": "CI"
30+
},
31+
{
32+
"type": "docs",
33+
"hidden": false,
34+
"section": "Docs"
35+
},
36+
{
37+
"type": "deps",
38+
"hidden": false,
39+
"section": "Dependency Updates"
40+
},
41+
{
42+
"type": "perf",
43+
"hidden": false,
44+
"section": "Performance Improvements"
45+
},
46+
{
47+
"type": "refactor",
48+
"hidden": false,
49+
"section": "Refactoring"
50+
},
51+
{
52+
"type": "test",
53+
"hidden": false,
54+
"section": "Tests"
55+
},
56+
{
57+
"type": "chore",
58+
"hidden": false,
59+
"section": "Other"
60+
}
61+
]
62+
}

0 commit comments

Comments
 (0)