Skip to content

Tags: sshyran/gocd

Tags

22.3.0

Toggle 22.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request gocd#10990 from gocd/dependabot/npm_and_yarn/serve…

…r/src/main/webapp/WEB-INF/rails/babel-loader-8.3.0

ui-dev: bump babel-loader from 8.2.5 to 8.3.0 in /server/src/main/webapp/WEB-INF/rails

22.2.0

Toggle 22.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request gocd#10692 from gocd/dependabot/npm_and_yarn/serve…

…r/src/main/webapp/WEB-INF/rails/types/node-16.11.48

ui-dev: bump @types/node from 16.11.47 to 16.11.48 in /server/src/main/webapp/WEB-INF/rails

22.1.0

Toggle 22.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request gocd#10286 from gocd/dependabot/gradle/joda-time-j…

…oda-time-2.10.14

Bump joda-time from 2.10.13 to 2.10.14

21.4.0

Toggle 21.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request gocd#10019 from gocd/dependabot/npm_and_yarn/serve…

…r/src/main/webapp/WEB-INF/rails/babel/preset-react-7.16.7

ui-dev: bump @babel/preset-react from 7.16.5 to 7.16.7 in /server/src/main/webapp/WEB-INF/rails

21.3.0

Toggle 21.3.0's commit message
#000 - Validate stage counter in GETs as well.

Continuation of commit c22e042

21.2.0

Toggle 21.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request gocd#9126 from maheshp/deprecated_apis

Deprecated apis

21.1.0

Toggle 21.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request gocd#8930 from kritika-singh3/bump_gocd_version

Update gocd version to 21.1.0

20.10.0

Toggle 20.10.0's commit message
The latest chrome version pulled by chocolatey is 86, hence using app…

…ropriate chromedriver

20.9.0

Toggle 20.9.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request gocd#8752 from maheshp/upgrade_bc

Upgrade BC to 1.67, fixes gocd#8624

20.8.0

Toggle 20.8.0's commit message
Fix stage overview caret icon positioning

Bug:
	When the stage overview for the rightmost pipeline on the
dashboard is opened, the overview caret icon is mis-positioned
initially and on the subsequent redraw its positioned appropriately.

Why did it happen?:
	The 'shouldAlignLeft' state was changed in the oncreate
lifecycle method, whereas, any state changes done in the oncreate
does not performs an immediate redraw. Such changes will be
reflected on the next periodic redraw.
	This behavior caused the caret icon to be positioned
appropriately on the subsequent redraws.

Fix:
	Do not store/update state as part of the oncreate method.
As we've the handle to the created element's DOM, add appropriate
classes to the DOM element within oncreate.