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

[pull] master from Semantic-Org:master #223

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c8aace9
chore: replace ta-scripts with release-it (#4410)
layershifter Dec 13, 2022
95ec819
feat: use React.forwardRef in all components (#4233)
layershifter Feb 28, 2023
038b306
Release 3.0.0-beta.0
levithomason Feb 28, 2023
7d3e162
docs: add migration guide to v3 (#4431)
layershifter Jul 9, 2023
d4fe69a
docs: update changelog [ci skip]
layershifter Jul 9, 2023
79ffb36
fix(Form.Group): add disabled flag (#4436)
naman1608 Sep 4, 2023
ba4b720
fix: add error prop to FormGroup (#4437)
felixmosh Sep 4, 2023
888b2f7
fix(Portal): fix event handling for mouseEnter/mouseLeave (#4445)
tourman Dec 10, 2023
076f818
fix: add contextElement to ReferenceProxy (#4446)
CoryDuncan Dec 10, 2023
49ef16a
docs(CHANGELOG): release 2.1.5
layershifter Dec 10, 2023
e243fa4
fix(typings): update types to support `ref` (#4447)
layershifter Dec 10, 2023
5646905
chore: remove usage of deprecated `.defaultProps` (#4449)
tourman Dec 30, 2023
8700e57
chore: bump Babel & react-docgen (#4454)
layershifter Dec 30, 2023
3b54506
chore: add "use client" directive in components where it's needed (#4…
layershifter Dec 30, 2023
cdc44ef
chore: fix lint warnings (#4455)
layershifter Dec 30, 2023
6c506b2
chore: remove "dot-syntax" from examples (#4456)
layershifter Dec 30, 2023
17c45e5
chore: release 3.0.0-beta.1 [ci skip]
layershifter Dec 30, 2023
c579cab
Release 3.0.0-beta.2
layershifter Dec 30, 2023
ef8684c
docs: update changelog [ci skip]
layershifter Dec 30, 2023
67f2c92
docs(migrations): fix incorrect spelling of Visibility deprecation (#…
jasondkiesling Mar 8, 2024
21cce97
fix(typings): Type Tab.Pane is missing (#4457) (#4473)
atti187 Mar 19, 2024
1623c8d
docs: replace `polyfill.io` (#4467)
SukkaW Jun 28, 2024
d70adfc
fix(Popup): fix ability to not hide popup on scroll (#4490)
konradkierus Nov 12, 2024
80a60c9
chore(Popup): replace event-stack (#4499)
dominikdosoudil Nov 13, 2024
2dbdc79
chore: rename classNameBuilder utils from use* -> get* (#4500)
dominikdosoudil Nov 16, 2024
df42457
chore: rename classNameBuilder functions in "modules" (#4501)
dominikdosoudil Nov 18, 2024
791e232
chore: rename classNameBuilder functions in "elements" (#4503)
dominikdosoudil Nov 21, 2024
74cbda4
chore: rename classNameBuilder functions in "collections" (#4502)
dominikdosoudil Nov 21, 2024
a7e8c69
chore: rename classNameBuilder functions in "views" and remove classN…
dominikdosoudil Nov 22, 2024
e0a42b5
chore(eslint): enable react-hooks/recommended (#4498)
dominikdosoudil Nov 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: replace ta-scripts with release-it (Semantic-Org#4410)
* chore: replace ta-scripts with release-it

* chore: bump Node versions on CI
layershifter authored Dec 13, 2022

Verified

This commit was signed with the committer’s verified signature. The key has expired.
jonaseberle Jonas Eberle
commit c8aace9c1860f806f830817ca0222eca47af30fc
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ general:

docker_defaults: &docker_defaults
docker:
- image: circleci/node:12-browsers
- image: circleci/node:16-browsers
working_directory: ~/project/semantic-ui-react

environment:
2 changes: 1 addition & 1 deletion .github/workflows/size-limit.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:

- uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 16.x

- name: Cache node_modules
uses: actions/cache@v1
9 changes: 9 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"github": {
"release": false
},
"npm": {
"publishArgs": "--registry=https://registry.npmjs.org",
"skipChecks": true
}
}
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -29,9 +29,7 @@
"prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"prerelease": "yarn lint && yarn tsd:test && yarn test && cross-env NODE_ENV=production yarn build",
"postrelease": "yarn deploy:docs",
"release:major": "yarn prerelease && ta-script npm/release major && yarn postrelease",
"release:minor": "yarn prerelease && ta-script npm/release minor && yarn postrelease",
"release:patch": "yarn prerelease && ta-script npm/release patch && yarn postrelease",
"release": "release-it",
"prestart": "yarn satisfied --fix yarn",
"start": "cross-env NODE_ENV=development gulp --series start:docs",
"satisfied": "satisfied --ignore \"webpack|react|react-dom\" --skip-invalid",
@@ -166,6 +164,7 @@
"react-static-routes": "^1.0.0",
"react-test-renderer": "^17.0.0",
"react-universal-component": "^3.0.3",
"release-it": "^15.5.1",
"rimraf": "^3.0.2",
"satisfied": "^1.1.2",
"semantic-ui-css": "^2.4.1",
@@ -174,7 +173,6 @@
"sinon-chai": "^3.5.0",
"size-limit": "^4.5.5",
"start-server-and-test": "^1.11.5",
"ta-scripts": "^2.5.2",
"terser-webpack-plugin": "^3.0.8",
"terser-webpack-plugin-legacy": "^1.2.3",
"through2": "^3.0.1",
1,891 changes: 1,594 additions & 297 deletions yarn.lock

Large diffs are not rendered by default.