Skip to content

Commit 36aacf2

Browse files
authored
Merge pull request #11992 from newjersey/release-20251219
release 20251219
2 parents 5a23a91 + a95c590 commit 36aacf2

File tree

4 files changed

+59
-15
lines changed

4 files changed

+59
-15
lines changed

.github/actions/generate-release-notes/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@ runs:
66
steps:
77
- name: Generate Release Notes
88
shell: bash
9+
env:
10+
GH_TOKEN: ${{ github.token }}
911
run: |
1012
yarn semantic-release --branches "$GITHUB_REF_NAME"
1113
1214
- name: Create PR to main
1315
shell: bash
16+
env:
17+
GH_TOKEN: ${{ github.token }}
1418
run: |
1519
git status
20+
git fetch origin main:refs/remotes/origin/main
1621
gh pr create --fill --base main --head "$GITHUB_REF_NAME"

.github/workflows/release-pipeline.yml

Lines changed: 31 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,25 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
deploy-staging:
11-
uses: newjersey/navigator.business.nj.gov/.github/workflows/deploy-staging-environment.yml@main
12-
secrets: inherit
13-
14-
production-hold:
15-
needs: deploy-staging
16-
runs-on: ubuntu-latest
17-
permissions:
18-
contents: read
19-
id-token: write
20-
environment: prod
21-
steps:
22-
- run: echo "Awaiting approval for production release."
10+
# deploy-staging:
11+
# uses: ./.github/workflows/deploy-staging-environment.yml
12+
# secrets: inherit
13+
# permissions:
14+
# contents: read
15+
# id-token: write
16+
17+
# production-hold:
18+
# needs: deploy-staging
19+
# runs-on: ubuntu-latest
20+
# permissions:
21+
# contents: read
22+
# id-token: write
23+
# environment: prod
24+
# steps:
25+
# - run: echo "Awaiting approval for production release."
2326

2427
prepare-release:
25-
needs: production-hold
28+
# needs: production-hold
2629
runs-on: ubuntu-latest
2730
permissions:
2831
contents: write
@@ -31,6 +34,20 @@ jobs:
3134
environment: prod
3235
steps:
3336
- uses: actions/checkout@v6
37+
- name: Set up Node.js 22.20.0
38+
uses: actions/setup-node@v6
39+
with:
40+
node-version: 22.20.0
41+
cache: yarn
42+
- uses: actions/cache@v5
43+
with:
44+
path: .yarn/cache
45+
key: yarn-cache-${{ hashFiles('yarn.lock') }}
46+
restore-keys: |
47+
yarn-cache-
48+
- name: Install Dependencies
49+
shell: bash
50+
run: yarn install --immutable
3451
- uses: ./.github/actions/generate-release-notes
3552

3653
deploy-production:

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# [2025.25.0](https://github.com/newjersey/navigator.business.nj.gov/compare/v2025.24.0...v2025.25.0) (2025-12-23)
2+
3+
4+
### Bug Fixes
5+
6+
* [AB[#15848](https://github.com/newjersey/navigator.business.nj.gov/issues/15848)] Fix edge handling for error field ([d224c67](https://github.com/newjersey/navigator.business.nj.gov/commit/d224c676453d700f21d87ec2c17f3fc61137332b))
7+
* [AB[#16685](https://github.com/newjersey/navigator.business.nj.gov/issues/16685)] remove FEATURE_SHOW_REMOVE_BUSINESS flag ([25e2511](https://github.com/newjersey/navigator.business.nj.gov/commit/25e2511a9d0851c8ad6c9d618e1878dc6d8f0b32))
8+
* **deps:** update dependency next to v15.5.7 [security] ([7275983](https://github.com/newjersey/navigator.business.nj.gov/commit/7275983ab84948926de60b825e9bdafef144faea))
9+
* **deps:** update dependency next to v15.5.8 [security] ([8bcd277](https://github.com/newjersey/navigator.business.nj.gov/commit/8bcd277383b268e14e958a27caadfc13734ec20d))
10+
* **deps:** update dependency next to v15.5.9 [security] ([23a3a47](https://github.com/newjersey/navigator.business.nj.gov/commit/23a3a47f4a14bf94a596eae65cba223c9b0a2160))
11+
* remove deploy content from merge-content ([5580ffa](https://github.com/newjersey/navigator.business.nj.gov/commit/5580ffa31b40c665231d597f903d813b7e0c1019))
12+
* update deployment for content-repo ([a2b52b3](https://github.com/newjersey/navigator.business.nj.gov/commit/a2b52b39549440f42fad456dfc85905518f1ee43))
13+
14+
15+
### Features
16+
17+
* [AB[#15848](https://github.com/newjersey/navigator.business.nj.gov/issues/15848)] Add success response for employer rates call ([8ccd113](https://github.com/newjersey/navigator.business.nj.gov/commit/8ccd113f8a8cb6a902e2d88cedfb27bf74f42390))
18+
* [AB[#16118](https://github.com/newjersey/navigator.business.nj.gov/issues/16118)] implement simple welcome email in html ([772f698](https://github.com/newjersey/navigator.business.nj.gov/commit/772f69869f21fa255e4725dc1b73b5afd8ac2cc2))
19+
* [AB[#16139](https://github.com/newjersey/navigator.business.nj.gov/issues/16139)] Encrypt DOL EIN field ([4d3c4d6](https://github.com/newjersey/navigator.business.nj.gov/commit/4d3c4d63a4001c0350ec5fa1b0d754c3aa700f81))
20+
* [AB[#16676](https://github.com/newjersey/navigator.business.nj.gov/issues/16676)] Replace stale handling of unsaved changes on profile with new modal and updated navigation interception logic ([771c947](https://github.com/newjersey/navigator.business.nj.gov/commit/771c9479f4b7c0b01096054460a99b96d9226eef))
21+
* [AB[#16850](https://github.com/newjersey/navigator.business.nj.gov/issues/16850)] Show encrypted DOL EIN for returning users ([f090534](https://github.com/newjersey/navigator.business.nj.gov/commit/f0905341c6e2589c0da4c9fe7f30feea73680dcf))
22+
123
# [2025.24.0](https://github.com/newjersey/navigator.business.nj.gov/compare/v2025.23.0...v2025.24.0) (2025-12-05)
224

325

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@businessnjgovnavigator/root",
3-
"version": "2025.24.0",
3+
"version": "2025.25.0",
44
"description": "This is the development repository for the work-in-progress business navigator from the New Jersey Office of Innovation. For info on the existing [Business.NJ.gov](https://business.nj.gov) site, please see the [bottom of this document](https://github.com/newjersey/navigator.business.nj.gov#businessnjgov)",
55
"main": "index.js",
66
"private": true,

0 commit comments

Comments
 (0)